保证本地分支和远程私有仓库分支是同步的
git fetch
git rebase origin develop (从远程公有仓库拉取代码)
for {
解决冲突
git add .
git rebase --continue
}
success
删除远程私有仓库的分支
重新推送私有仓库分支
保证本地分支和远程私有仓库分支是同步的
git fetch
git rebase origin develop (从远程公有仓库拉取代码)
for {
解决冲突
git add .
git rebase --continue
}
success
删除远程私有仓库的分支
重新推送私有仓库分支
本文标题:Git Rebase
本文链接:https://www.haomeiwen.com/subject/ycsgwftx.html
网友评论