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 // 比較當前修改狀況html

merge使用方法

git mergetool

 

 

sourceTree設置方法以下:

1.在菜單(工具->選項)中設置如圖

 

2.使用菜單(操做->解決衝突->打開外部合併工具),則可以使用

相關文章
相關標籤/搜索