- 日常提交代码
- 方案1:
git add .
git commit -m"command"
git fetch origin a
git rebase origin/master
git add . (如果有冲突)
git rebase --continue
-
添加代码到暂存区
-
提交代码(本地提交)
-
抓取远程分支到本地(相当于在本地提交前拉取远程代码,然后再commit本地代码,不会merge)
-
变基(抓取后本地有2条分支,变基是把当前分支合并到另一条分支)
-
如果有冲突,解决冲突再continue
- 方案2:
git add .
git stash
git pull
git stash pop
git add .
git commit -m"command"
git push(如果有冲突重复前面所有步骤)
网友评论