Skip to content

Instantly share code, notes, and snippets.

@ivoscc
Created July 1, 2013 22:54
Show Gist options
  • Save ivoscc/5905339 to your computer and use it in GitHub Desktop.
Save ivoscc/5905339 to your computer and use it in GitHub Desktop.
Git time saving
alias ga='git add'
alias gp='git push'
alias gl='git log --graph --all --pretty="format:%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset"'
alias gs='git status'
alias gd='git diff --color-words'
alias gdc='git diff --cached'
alias gm='git commit -m'
alias gma='git commit -am'
alias gb='git branch'
alias gc='git checkout'
alias gra='git remote add'
alias grr='git remote rm'
alias gpu='git pull'
alias gcl='git clone'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment