git设置mergetool可视化工具

git设置mergetool可视化工具,第1张

git设置mergetool可视化工具  
可以设置BeyondCompare,DiffMerge等作为git的比较和合并的可视化工具,方便 *** 作.
设置如下:
  1. 先下载并安装BeyondCompare,DiffMerge等.
  2. 设置git配置,设置BeyondCompare的git命令如下:
    1.   #difftool 配置
    2.   git config --global diff.tool bc4
    3.   git config --global difftool.bc4.cmd "\"c:/program files (x86)/beyond compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\""
    4.    
    5.    
    6.   #mergeftool 配置
    7.   git config --global merge.tool bc4
    8.   git config --global mergetool.bc4.cmd "\"c:/program files (x86)/beyond compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\""
    9.   git config --global mergetool.bc4.trustExitCode true
    10.    
    11.   #让git mergetool不再生成备份文件(*.orig)
    12.   git config --global mergetool.keepBackup false
使用方法如下: diff使用方法:

git difftool HEAD // 比较当前修改情况

merge使用方法
git mergetool
sourceTree设置方法如下: 1.在菜单(工具->选项)中设置如图

2.使用菜单( *** 作->解决冲突->打开外部合并工具),则可使用

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/587690.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-12
下一篇 2022-04-12

发表评论

登录后才能评论

评论列表(0条)

保存