DevTools/Git

[Git] Tip: Using BeyondCompare4 as Diff Tool

llHoYall 2022. 2. 23. 16:35

Prerequisite

BC4(BeyondCompare 4)가 설치되어 있고, 환경변수에 등록이 되어 command line에서 사용이 가능해야합니다.

Setting

BC4를 git의 diff tool로 사용하기 위하여 등록을 해줍니다.

$ git config --global diff.tool bc4

Usage

단순히 diff를 하게되면 파일 단위로 하기 때문에 사용에 불편함이 있습니다.

따라서, 전체 폴더 단위로 하도록 사용하는 편을 추천드립니다.

$ git difftool --dir-diff <Commit ID> <Commit ID>