sh 解决git二进制冲突

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 解决git二进制冲突相关的知识,希望对你有一定的参考价值。

# Use this commands after a git merge conflict, if you can't
# (or don't want to) fix the conflicts on some files.

# To use the base branch's file, use this:
git checkout --ours -- path/to/your/file.ext
git add path/to/file.ext

# To use the compare branch's file, use this:
git checkout --theirs -- path/to/your/file.ext
git add path/to/file.ext

# For example:
git checkout --theirs -- spec/fixtures/example.docx
git add spec/fixtures/example.docx

以上是关于sh 解决git二进制冲突的主要内容,如果未能解决你的问题,请参考以下文章

Git merge 冲突解决简明教程

sh Git:创建合并冲突

git代码冲突怎么解决

git 如何去解决冲突

Eclipse中git冲突怎么解决

git 提交冲突怎么办