Git mergetool with Meld on Windows

前端 未结 9 1078
名媛妹妹
名媛妹妹 2020-12-02 05:19

In Linux, my favorite merge tool is Meld, and I\'ve had no problems using or configuring it to work with Git. However, in Windows it has been a different story.

Fir

9条回答
  •  -上瘾入骨i
    2020-12-02 05:54

    Schuess, be careful for space character in directories!

    [merge]
        tool = meld
    [mergetool "meld"]
        prompt = false
        keepBackup = false
        keepTemporaries = false
        path = C:/Program Files (x86)/Meld/Meld.exe
        cmd = \"/C/Program Files (x86)/Meld/Meld.exe\" \"$PWD/$LOCAL\" \"$PWD/$BASE\" \"$PWD/$REMOTE\" \"--output=$PWD/$MERGED\"
    

提交回复
热议问题