1、检出远程分支,同步到本地
git checkout -b dev_demo_20230218
2、点击检出,即可同步
git checkout dev_demo_2023018
Tips: 当前分支,即可在此切换各个分支
3、提交本地修改 or 新增代码和文件
# 提交本地更新的所有代码
git add .
# 填补提交commits信息
git commit -m 'fix: Amend files'
4、拉取远程分支代码
git pull
or
git pull --rebase
5、推送本地commits
git push
6、合并代码
#origin_branch_name 远程分支 or 本地代码分支
git merge origin_branch_name
Tips:
1、同步远程分支代码 or 本地其他分支代码,都需要先commit 自己分支内容先
2、解决代码冲突
3、本地运行,确认正常后,方可提交代码到远程分支