meld安装
1、debian 系统
1.1、安装 meld
sudo apt-get install meld
1.2、创建 git_meld.sh 脚本
vim /bin/git-meld.sh
#!/bin/sh
meld $2 $5
1.3、修改 git_meld.sh文件的权限
chmod +x /bin/git-meld.sh
1.4、配置 git 默认的比较工具
git config --global diff.external /bin/git-meld.sh