Skip to content

Instantly share code, notes, and snippets.

View watamario15's full-sized avatar

watamario15

View GitHub Profile
@watamario15
watamario15 / .gitconfig
Last active October 13, 2023 14:50
Git configurations to use VSCode, WinMerge, and UnityYAMLMerge on WSL.
[diff]
tool = vscode
[difftool]
prompt = false
[difftool "vscode"]
cmd = code --wait --diff "$LOCAL" "$REMOTE"
trustExitCode = false
[difftool "winmerge"]
cmd = '/mnt/c/Users/watamario15/AppData/Local/Programs/WinMerge/WinMergeU.exe' -e -r -u -x -wl -wr -dl "Your $MERGED" -dr "Incoming $MERGED" "$LOCAL" "$REMOTE"
trustExitCode = false