Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设由于许多人同时处理文件而导致文件发生冲突,但这是您不想接触代码的那种文件(通常由于所见即所得编辑器而由自动化工具生成的大混乱)。在这种情况下如何解决冲突?
有耐心和git mergetool.
git mergetool
或者,您可以选择一个版本来保留和丢弃其他版本。
git pull -s recursive -X theirs
将从远程提取内容并使用远程版本解决合并冲突。
仅当您有能力放弃对冲突文件的更改时才这样做。