Skip to content

Instantly share code, notes, and snippets.

@rafbm
Created December 9, 2011 13:09
Show Gist options
  • Save rafbm/1451461 to your computer and use it in GitHub Desktop.
Save rafbm/1451461 to your computer and use it in GitHub Desktop.
Git Aliases for the Minimalist
alias glog="git log --oneline --decorate"
alias gstatus="git status -sbu"
alias gdiff="git diff"
alias gadd="git add -p"
alias gcommit="git commit -v"
alias grebase="git rebase -i"
alias gpull="git pull --rebase origin"
alias gpush="git push origin"
alias gstash="git stash save"
alias gpop="git stash pop"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment