Created
December 9, 2010 12:13
-
-
Save jstclair/734659 to your computer and use it in GitHub Desktop.
My gitconfig
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
[core] | |
autocrlf = false | |
editor = n.exe | |
excludesfile = C:/Users/johns/.gitignore | |
[color] | |
ui = auto | |
status = auto | |
diff = auto | |
branch = auto | |
[user] | |
name = John St. Clair | |
email = [email protected] | |
[diff] | |
tool = bc3 | |
guitool = bc3 | |
[difftool "bc3"] | |
cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" | |
[difftool] | |
prompt = false | |
[merge] | |
tool = bc3 | |
[mergetool "bc3"] | |
cmd = \"c:/program files/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\" | |
trustExitCode = true | |
path = C:/Program Files (x86)/Beyond Compare 3/BComp.exe | |
[gui] | |
fontdiff = -family Consolas -size 10 -weight normal -slant roman -underline 0 -overstrike 0 | |
[alias] | |
st = status | |
ci = commit | |
co = checkout | |
br = branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment