Last active
April 11, 2017 10:16
-
-
Save iwillspeak/2008c46ef5fedaebaf05 to your computer and use it in GitHub Desktop.
Git Config Sections
This file contains 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
[alias] | |
stat = status -sb | |
graph = log --oneline --decorate --graph --topo-order | |
desc = log -1 --decorate | |
leaderboard = shortlog -sne | |
sync = !git pull --rebase && git push | |
[push] | |
default = simple |
This file contains 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
[core] | |
excludesfile = ~/.gitignore | |
editor = emacs | |
autocrlf = true | |
[diff] | |
tool = ediff | |
guitool = ediff | |
[difftool] | |
promtp = false | |
[difftool "ediff"] | |
cmd = ~/.bin/ediffmerge.sh \"$LOCAL\" \"$REMOTE\" | |
[merge] | |
tool = ediff | |
prompt = false | |
[mergetool "ediff"] | |
cmd = ~/.bin/ediffmerge.sh \"$LOCAL\" \"$REMOTE\" \"$MERGED\" \"$BASE\" | |
trustExitCode = true | |
[credential] | |
helper = manager |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using https://github.com/Microsoft/Git-Credential-Manager-for-Windows for Windows.