使用其他分支替换master分支
Posted cwhycwhy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用其他分支替换master分支相关的知识,希望对你有一定的参考价值。
在提交混乱的时候, 导致master分支和远程仓库完全一致的时候,这时候解决这种问题可以创建一个新的分支, 再合并到master分支, 像这样:
git checkout seotweaks git merge -s ours master git checkout master git merge seotweaks
这时候push代码到远程仓库肯定是有冲突的, 我们简单粗暴这样:
git push origin <your_branch_name> --force
或者:
git push https://git.... --force
以上是关于使用其他分支替换master分支的主要内容,如果未能解决你的问题,请参考以下文章
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段