Git

Git系列8:Git Rebase

2020-01-02  本文已影响0人  XBruce

改写历史提交
注意:不要rewrite那些已经被分享给其他开发者的历史提交。


image.png

git rebase语法


image.png

Rebase(需要解决冲突)

git checkout featureX
git rebase master
git status
Fix conflict files
git add  <files>
git rebase --continue
#最后记得执行push提交到远程repo
git push -f
上一篇下一篇

猜你喜欢

热点阅读