Skip to content

Instantly share code, notes, and snippets.

@bobbrez
Created October 24, 2011 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbrez/1308114 to your computer and use it in GitHub Desktop.
Save bobbrez/1308114 to your computer and use it in GitHub Desktop.
My GitConfig
[user]
name = Bob Breznak
email = bob@where.com
[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