Skip to content

Instantly share code, notes, and snippets.

@helloimbenny
Created February 13, 2013 17:28
Show Gist options
  • Save helloimbenny/4946350 to your computer and use it in GitHub Desktop.
Save helloimbenny/4946350 to your computer and use it in GitHub Desktop.
Git Aliases
# Git Aliases
alias ga='git add'
alias gp='git push'
alias gl='git log'
alias gs='git status'
alias gd='git diff'
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'
alias grs='git reset --soft HEAD^'
alias amend='git commit --amend'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment