Created
May 29, 2014 15:58
-
-
Save kevindurb/ee0a9c8e015654477c75 to your computer and use it in GitHub Desktop.
git aliases
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
# git aliases to make stuff faster | |
alias gits="tig status" | |
alias gitc="git commit -a" | |
alias gita="git amend" | |
alias gitcp="git cherry-pick" | |
alias gitp="git push origin" | |
alias gitd="git diff -w" | |
alias gitpu="git smart-pull" | |
alias gitl="tig" | |
alias gitch="git checkout" | |
alias gitdep="git push deploy master" | |
alias ungit="git undo -h" | |
alias ccb="cd ~/projects/ccb" | |
alias resources="cd ~/projects/resources" | |
# other aliases to make stuff faster | |
alias lss="ls -lAF" | |
alias c="clear" | |
alias localsql="mysql --auto-rehash -h localhost -u root -p" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment