git difftool 설정 (VS Code)
git config
1
git config --global -e
.gitconfig 설정
1
2
3
4
5
6
7
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
git difftool
1
2
git difftool
git difftool --staged
1
git config --global -e
1
2
3
4
5
6
7
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
1
2
git difftool
git difftool --staged
A new version of content is available.