码迷,mamicode.com
首页 > 其他好文 > 详细

使用其他分支替换master分支

时间:2019-04-25 11:42:30      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:合并   其他   --   提交   替换   ast   color   git   style   

在提交混乱的时候, 导致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分支

标签:合并   其他   --   提交   替换   ast   color   git   style   

原文地址:https://www.cnblogs.com/cwhycwhy/p/10767319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!