Created
October 23, 2013 19:28
-
-
Save orlissenberg/7125064 to your computer and use it in GitHub Desktop.
Configure Kaleidoscope as the GIT difftool on the terminal.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------ | |
.git/config | |
------------------------------------ | |
[diff] | |
tool = ksdiff | |
[difftool "ksdiff"] | |
cmd = ksdiff \"$LOCAL\" \"$REMOTE\" | |
------------------------------------ | |
Configuration via commandline | |
------------------------------------ | |
git config diff.tool ksdiff | |
git config difftool.ksdiff.cmd 'ksdiff "$LOCAL" "$REMOTE"' | |
(add --global for all git repositories) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment