ubuntu使用meld/beyond compare 做git的diff工具

文章目录

    • 使用meld作为比较工具
    • 使用BeyondCompare作为比较工具

以下只针对Ubuntu,其他系统自己斟酌修改

使用meld作为比较工具

  1. 安装meld
    sudo apt-get install meld

  2. 新建文件,并写入参数
    mkdir ~/bin/
    vi ~/bin/git_meld.sh
    写入以下内容
    #!/bin/sh
    meld $2 $5

  3. 添加可执行权限
    chmod +x ~/bin/git_meld.sh

  4. 配置git
    git config--global diff.external ~/bin/git_meld.sh

使用BeyondCompare作为比较工具

  1. 安装beyondCompare
    如需安装包beyondCompare3.deb,请联系 [email protected]
    安装成功后,在命令行输入bcompare,可以打开bcompare.

  2. 新建文件,并写入参数
    vi ~/bin/git_bcompare.sh
    写入以下内容
    #!/bin/sh
    bcompare $2 $5

  3. 添加可执行权限
    chmod +x ~/bin/git_bcompare.sh

  4. 配置git
    git config--global diff.external ~/bin/git_bcompare.sh

你可能感兴趣的:(git使用)