Created
October 24, 2011 00:16
-
-
Save bobbrez/1308114 to your computer and use it in GitHub Desktop.
My GitConfig
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
[user] | |
name = Bob Breznak | |
email = [email protected] | |
[alias] | |
co = checkout | |
st = status | |
ci = commit | |
com = commit | |
di = diff | |
ig = update-index --assume-unchanged | |
uig = update-index --no-assume-unchanged | |
release-tag = !sh -c 'TAG=$0-`date +"%Y%m%d%H%M%S"` && echo "Creating Tag: $TAG" && git tag $TAG -am \"$1\" && git push --tags origin master' | |
rmbr = !sh -c 'git branch -D "$0" && git push origin ":$0"' | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
interactive = auto | |
ui = true | |
pager = true | |
[core] | |
excludesfile = /Users/robertbreznak/.gitignore | |
quotepath = false | |
[difftool "Kaleidoscope"] | |
[difftool] | |
[diff] | |
[difftool "Kaleidoscope"] | |
cmd = ksdiff-wrapper git \"$LOCAL\" \"$REMOTE\" | |
[difftool] | |
prompt = false | |
[diff] | |
tool = Kaleidoscope | |
[github] | |
user = bobbrez |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment