我已经设置:

git config --global merge.tool meld
git config --global mergetool.meld.path c:/Progra~2/meld/bin/

在“git mergetool”上它写道:
Hit return to start merge resolution tool (meld):
The merge tool meld is not available as 'c:/Progra~2/meld/bin/'

我也试过:
  • /c/Progra~2/meld/bin/
  • "/c/程序文件 (x86)/meld/bin/"
  • "c:/程序文件 (x86)/meld/bin/"

  • 结果是一样的。

    当我转到 C:/Program files (x86)/meld/bin/并运行时
    python meld
    

    工具运行。

    最佳答案

    您可以使用完整的 Unix 路径,例如:

    PATH=$PATH:/c/python26
    git config --global merge.tool meld
    git config --global mergetool.meld.path /c/Program files (x86)/meld/bin/meld
    

    这就是“How to get meld working with git on Windows”中所描述的

    或者您可以采用“Use Meld with Git on Windows”中描述的包装方法
    # set up Meld as the default gui diff tool
    $ git config --global  diff.guitool meld
    
    # set the path to Meld
    $ git config --global mergetool.meld.path C:/meld-1.6.0/Bin/meld.sh
    

    使用脚本 meld.sh :
    #!/bin/env bash
    C:/Python27/pythonw.exe C:/meld-1.6.0/bin/meld $@
    

    abergmeier 提到 in the comments :


    git config --global merge.tool meld
    git config --global mergetool.meld.path /c/Program files (x86)/Meld/meld/meldc.exe
    



    CenterOrbitthe comments 中提到 Mac OS 安装 homebrew ,然后:
    brew cask install meld
    git config --global merge.tool meld
    git config --global  diff.guitool meld
    

    关于git-merge - 如何将 Meld 设置为 git mergetool,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12956509/

    10-13 05:17