Skip to content

Instantly share code, notes, and snippets.

@roelven
Created February 7, 2011 12:15
Show Gist options
  • Save roelven/814296 to your computer and use it in GitHub Desktop.
Save roelven/814296 to your computer and use it in GitHub Desktop.
.gitconfig
[user]
name = Roelven
email = [email protected]
[color]
branch = auto
diff = auto
status = auto
interactive = auto
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status
ci = commit
co = checkout
br = branch
p = pull
pu = push
edit-unmerged = "!f() { git ls-files --unmerged | cut -f2 | sort -u ; }; mate `f`"
add-unmerged = "!f() { git ls-files --unmerged | cut -f2 | sort -u ; }; git add `f`"
[diff]
# external = "/usr/local/bin/git-diff-driver.sh"
[core]
excludesfile = /Users/Roel/.gitignore
[difftool]
prompt = false
[push]
default = tracking
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment