有没有办法在将文件输入三向合并工具之前完全关闭 git 解决冲突的尝试?
我的意思是那些行:
<<<<<<< Temporary merge branch 1
...
=======
...
>>>>>>> Temporary merge branch 2
它在将它们输入到 kdiff3 之前添加它们并将更改分支到基本文件中,而后者则完全发疯了,显示出奇怪的冲突。
我想简单地保持基本版本不变。
到目前为止,我只找到了选项
merge.conflictstyle
但似乎没有选择关闭这些线路。
除了编写一个可以去除线条的预处理器之外,还有其他方法吗?
更新
我会在这里解释我不喜欢什么。
问题是当 git 启动 kdiff3 时,基本版本包含如下行
X1
<<<<<<< Temporary merge branch 1
A
=======
B
>>>>>>> Temporary merge branch 2
X2
本地版本包含:
X1
A
X2
远程修订包含:
X1
B
X2
whereX1
和X2
是 3 个文件之间的一些常见代码行。
现在,kdiff3 在这里发出冲突信号。
如果我抓取文件,将它们复制到单独的文件夹并删除 and 之间的所有内容<
,>
kdiff3 会更好地合并文件,有时会自动合并。
从我在http://www.gitguys.com/topics/merging-with-a-gui/看到的内容来看,看起来它实际上不应该显示 BASE 修订版中的行。但确实如此。我如何解决它?
配置
git config -l
给出了这个:
core.symlinks=false
core.autocrlf=false
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
user.name=Pavel Gatilov
user.email=********
merge.tool=kdiff3
mergetool.kdiff3.path=C:/Program Files (x86)/KDiff3/kdiff3.exe
diff.guitool=kdiff3
difftool.kdiff3.path=C:/Program Files (x86)/KDiff3/kdiff3.exe
difftool.kdiff3.cmd="C:/Program Files (x86)/KDiff3/kdiff3.exe" "$LOCAL" "$REMOTE"
core.editor="C:/Program Files (x86)/GitExtensions/GitExtensions.exe" fileeditor
core.autocrlf=false
credential.helper=!"C:/Program Files (x86)/GitExtensions/GitCredentialWinStore/git-credential-winstore.exe"
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
core.safecrlf=true
remote.origin.url=********
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.develop.remote=origin
branch.develop.merge=refs/heads/develop
gui.wmstate=normal
gui.geometry=887x427+175+175 171 192
branch.8480-il.remote=origin
branch.8480-il.merge=refs/heads/8480-il
branch.branch-9354.remote=origin
branch.branch-9354.merge=refs/heads/branch-9354
版本
我用:
工具版本 ---------------------- msysgit 1.8.1.msysgit.1 Git 扩展 2.44 kdiff3 0.9.97
当我通过 Git Extensions 和通过运行合并时,问题都存在git mergetool
更新 2
我已经尝试配置 kdiff3 预处理器命令来删除不需要的文件部分,但它似乎在每行的基础上工作,所以它无法解决问题。
我可以编写一个预处理器包装器,但我还不想这样做。