git8~rebase
2019-06-25 本文已影响4人
摹喵居士
2019.06.25
git rebase
- git stash
- git pull --rebase
- git stash pop
- 手动解决冲突
- git add -u
- git rebase --continue
- 如果此时提示No rebase in progress?则表示已经没有冲突了;否则上面两步要重复多次
- git commit -m “xxx”
- git push origin master
2019.06.25