Skip to content

Instantly share code, notes, and snippets.

@timnovinger
Created December 2, 2011 07:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timnovinger/1422249 to your computer and use it in GitHub Desktop.
Save timnovinger/1422249 to your computer and use it in GitHub Desktop.
Git config settings
[alias]
s = status
st = stash
c = commit
ca = commit -a
a = add
rma = rm $(git ls-files --deleted)
b = branch
m = merge
f = fetch
co = checkout
d = diff
l = log --pretty=oneline --graph
pusho = push origin
pullo = pull origin
pushh = push heroku
pullh = pull heroku
pullor = pull --rebase origin
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[core]
excludesfile = ~/.gitignore
[merge]
tool = nanodiff
summary = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment