Last active
May 24, 2017 09:40
-
-
Save salex89/f99670aeea68a9154a4da632aa911977 to your computer and use it in GitHub Desktop.
Example gitconfig file. Sets up Meld on Windows for merging and diff, enables rerere and skips creating .orig files.
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
[user] | |
email = <email> | |
name = Aleksandar Stojadinovic | |
[merge] | |
tool = meld | |
[mergetool] | |
keepBackup = false | |
[mergetool "meld"] | |
trustExitCode = true | |
path = C:\\Program Files (x86)\\Meld\\Meld.exe | |
cmd = meld "$LOCAL" "$BASE" "$REMOTE" --auto-merge --output "$MERGED" | |
trustExitCode = true | |
[diff] | |
tool = meld | |
[difftool] | |
prompt = false | |
[difftool "meld"] | |
trustExitCode = true | |
cmd = meld "$LOCAL" "$REMOTE" | |
[rerere] | |
enabled = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment