美文网首页
Git Rebase

Git Rebase

作者: HarlanHuang | 来源:发表于2018-09-04 12:27 被阅读13次

保证本地分支和远程私有仓库分支是同步的

git fetch
git rebase origin develop (从远程公有仓库拉取代码)

for {
解决冲突
git add .
git rebase --continue
}

success

删除远程私有仓库的分支
重新推送私有仓库分支

相关文章

网友评论

      本文标题:Git Rebase

      本文链接:https://www.haomeiwen.com/subject/ycsgwftx.html