Skip to content

Instantly share code, notes, and snippets.

@jeffmccune
Created March 25, 2011 21:07
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 jeffmccune/887627 to your computer and use it in GitHub Desktop.
Save jeffmccune/887627 to your computer and use it in GitHub Desktop.
Git Aliases I have in ~/.gitconfig
alias.st=status
alias.ci=commit
alias.co=checkout
alias.lg=log --pretty=format:'%C(yellow)%h%C(reset) %s %C(cyan)%cr%C(reset) %C(blue)%an%C(reset) %C(green)%d%C(reset)' --graph --date-order
alias.fpull=pull --ff --ff-only
alias.fmerge=merge --ff --ff-only
alias.review=log --stat=160,180 -p -w --patience --reverse -M -C -C -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment