https://www.liaoxuefeng.com/wiki/896043488029600/1216289527823648
Rebase 主要用于优化commit 信息,让commit信息在一条线上
git fetch
git rebase origin/master 会将远程master的代码拉取到本地,不用通过merge操作,merge操作会增加很多merge commit,没什么意义;
但是用rebase 有冲突时,操作有点不同
解决完冲突后
git add .git rebase --continue### 强推分支git push origin youbranch -f
