git mergetool配置
2012-11-07 14:27 敏捷的水 阅读(11886) 评论(0) 编辑 收藏 举报
虽然xcode内置强大的git 工具。但是当你工程文件冲突时,就不得不在xcode外合并。
1
2
3
4
5
6
|
git config --global merge.tool diffmerge git config --global mergetool.diffmerge.cmd "/Applications/DiffMerge.app/Contents/MacOS/diffmerge --merge --result=\$MERGED \$LOCAL \$BASE \$REMOTE" git config --global mergetool.keepBackup false git config --global diff .tool diffmerge git config --global difftool.diffmerge.cmd "/Applications/DiffMerge.app/Contents/MacOS/diffmerge \$LOCAL \$REMOTE" |
安装diffmerge
在git仓库目录下运行 git mergetool 就可以了
扫码关注公众号,了解更多管理,见识,育儿等内容
作者: 王德水
出处:http://www.cnblogs.com/cnblogsfans
版权:本文版权归作者所有,转载需经作者同意。
出处:http://www.cnblogs.com/cnblogsfans
版权:本文版权归作者所有,转载需经作者同意。