아래와 같이 지정하면 된다.
1 2 3 4 5 6 7 8 |
# difftool 로 beyond compare를 사용 $ git config --global diff.tool bc3 # beyond compare tool 의 실행파일 위치를 지정 $ git config --global difftool.bc3.path "/your/beyondcompare/path" # tool 이 뜰때 마다 나오는 message를 사용 안함 $ git config --global --add difftool.prompt false $ git config --global --add mergetool.prompt false |
또는, ~/.gitconfig 에서 아래와 같이 설정을 해도 된다.
1 2 3 4 5 6 7 8 |
[diff] tool = bc3 [difftool "bc3"] path = /your/beyondcompare/path [difftool] prompt = false [mergetool] prompt = false |