Skip to content

Instantly share code, notes, and snippets.

@jasonrudolph
Created June 11, 2010 13:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jasonrudolph/434454 to your computer and use it in GitHub Desktop.
Save jasonrudolph/434454 to your computer and use it in GitHub Desktop.
# git
alias gl='git pull'
alias gp='git push'
alias gd='git diff | mate'
alias gdh='git diff HEAD | mate'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gcap='git commit -v -a && git push'
alias gb='git branch'
alias gba='git branch -a'
alias gs='git status'
alias grm="git status | grep deleted | awk '{print \$3}' | xargs git rm"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment