คุณสามารถใช้เส้นทาง 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 "
หรือคุณสามารถใช้วิธีการห่อหุ้มที่อธิบายไว้ใน " ใช้ Meld กับ Git บน 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กล่าวถึงในความคิดเห็น :
ฉันต้องทำ:
git config --global merge.tool meld
git config --global mergetool.meld.path /c/Program files (x86)/Meld/meld/meldc.exe
โปรดทราบว่า meldc.exe ถูกสร้างขึ้นโดยเฉพาะเพื่อเรียกใช้บน Windows ผ่านคอนโซล ดังนั้น meld.exe จะทำงานไม่ถูกต้อง
CenterOrbitกล่าวถึงในความคิดเห็นสำหรับ Mac OS เพื่อติดตั้งhomebrewจากนั้น:
brew cask install meld
git config --global merge.tool meld
git config --global diff.guitool meld