Use BeyondCompare to see difference between files in GIT

前端 未结 4 1784
旧时难觅i
旧时难觅i 2021-02-07 12:36

Before I commit my changes, I want to see the difference using BeyondCompare in GIT. How can I configure BeyondCompare to see difference in my files.

I looked at this li

4条回答
  •  萌比男神i
    2021-02-07 13:06

    This link tells the way to set up BeyondComapre as the diff tool in git

    git config --global diff.tool bc3
    git config --global difftool.bc3.path "c:/program files/beyond compare 3/bcomp.exe"
    

    To launch a diff using Beyond Compare, use the command "git difftool foofile.txt".

提交回复
热议问题