Skip to content

Instantly share code, notes, and snippets.

@dlapiduz
Created May 16, 2013 22:59
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 dlapiduz/5595758 to your computer and use it in GitHub Desktop.
Save dlapiduz/5595758 to your computer and use it in GitHub Desktop.
.gitconfig
[alias]
c = commit -m
ci = commit
st = status
a = add
aa= !git add -u && git add . && git status
cob = checkout -b
up = !git fetch upstream && git rebase upstream/master
ir = !git rebase -i origin/master
done = !git fetch && git rebase origin/master && git checkout master && git merge @{-1} && rake && git push
co = checkout
[user]
name = Diego Lapiduz
email = diego.lapiduz@cfpb.gov
[color]
ui = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment