Skip to content

Instantly share code, notes, and snippets.

@tarmann
Created May 13, 2013 21:08
Show Gist options
  • Save tarmann/5571546 to your computer and use it in GitHub Desktop.
Save tarmann/5571546 to your computer and use it in GitHub Desktop.
Shell: Git Alias
alias gl='git pull'
alias gp='git push'
alias gd='git diff'
alias gc='git commit'
alias gca='git commit -a'
alias gco='git checkout'
alias gb='git branch'
alias gs='git status'
alias grm="git status | grep deleted | awk '{print \$3}' | xargs git rm"
@heldr
Copy link

heldr commented May 16, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment