Created
May 13, 2013 21:08
-
-
Save tarmann/5571546 to your computer and use it in GitHub Desktop.
Shell: Git Alias
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/visionmedia/git-extras