Skip to content

Instantly share code, notes, and snippets.

@cschneid
Created March 19, 2009 14:36
Show Gist options
  • Select an option

  • Save cschneid/81841 to your computer and use it in GitHub Desktop.

Select an option

Save cschneid/81841 to your computer and use it in GitHub Desktop.
$ cat gitconfig
[user]
name = Chris Schneider
email = chris@christopher-schneider.com
[apply]
whitespace = nowarn
[alias]
ch = checkout
chb = checkout -b
co = commit
st = status
coa = commit -a
d = diff
pl = pull
pu = push
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[core]
excludesfile = /Users/cschneid/.gitignore
editor = vim -c 'set ft=diff'
[mirror]
summary = true
[merge]
tool = opendiff
[branch "master"]
remote = origin
merge = refs/heads/master
[color "diff"]
new = yellow
$ cat ~/.gitignore
.*.sw?
.svn
.DS_Store
tags
tmp/restart.txt
coverage/
users_output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment