标签:合并 其他 -- 提交 替换 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
标签:合并 其他 -- 提交 替换 ast color git style
原文地址:https://www.cnblogs.com/cwhycwhy/p/10767319.html