Skip to content

Instantly share code, notes, and snippets.

@lukerandall
Created May 14, 2014 07:24
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 lukerandall/b787d54e18c8684b8cc4 to your computer and use it in GitHub Desktop.
Save lukerandall/b787d54e18c8684b8cc4 to your computer and use it in GitHub Desktop.
alias gap='git add -p'
alias gb='git branch'
alias gc='git commit -v'
alias gca='git commit -a -v'
alias gco="git checkout"
alias gd='git diff'
alias gdc='git diff --cached'
alias gdh='git diff HEAD'
alias gl='git pull'
alias glod='git log --oneline --decorate'
alias gp='git push'
alias gpr='git pull --rebase'
alias grep='grep --color=auto --exclude="*~"'
alias gst='git status'
alias gr='git rebase'
alias grc='git rebase --continue'
alias gra='git rebase --abort'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment