Created
August 23, 2014 16:39
-
-
Save lstebner/aa7dcf8f951cbb56a8b1 to your computer and use it in GitHub Desktop.
These are the bash alias' I use, mostly git shortcuts
This file contains hidden or 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 g='git' | |
alias o='open .' | |
alias x='gitx' | |
alias log='git log --name-only' | |
alias ci='git commit' | |
alias st='git status' | |
alias co='git checkout' | |
alias br='git branch' | |
alias rb='git rebase' | |
alias rbm='git rebase origin/master' | |
alias fetch='git fetch' | |
alias push='git push' | |
alias pull='git pull' | |
alias stache='git stash' | |
alias ls1='ls -1' | |
alias u='cd ../' | |
alias tag='git tag -a' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment