最佳答案
Git 继续用它那些毫无用处的错误警告来迷惑我。这个真的值得奖励:
git merge is not possible because you have unmerged files
我的情况: 我在 github 上的主分支被编辑(直接在浏览器中) ,而我的本地主分支也被编辑。
我错误地认为您可以简单地合并两个版本,然后完成它,但是,我也不能合并——因为我的文件是未合并的。
git merge remote/master
结果出来了
error: merge is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm <file>'
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.
因此,在添加和提交本地更改并尝试再次合并之后,我得到:
merge: remote/master - not something we can merge
很明显,我在这里遗漏了一些重要的东西... ... 我是否对合并的含义有错误的理解?如何解决拥有不同的远程主机/本地主机分支的问题?