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