Skip to content

Instantly share code, notes, and snippets.

@rsertelon
Created June 18, 2011 23:35
Show Gist options
  • Save rsertelon/1033595 to your computer and use it in GitHub Desktop.
Save rsertelon/1033595 to your computer and use it in GitHub Desktop.
My Bash Aliases for git
alias gs='git status'
alias gst='git stash'
alias glola='git lola'
alias gpush='git push'
alias gpull='git pull'
alias grebase='git rebase'
alias gbranch='git branch'
alias grm='git rm'
alias gadd='git add'
alias gco='git checkout'
alias gci='git commit'
alias grst='git reset'
alias grvt='git revert'
alias gmerge='git merge'
alias gprom='git pull --rebase origin master'
alias gdiff='git diff'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment