Skip to content

Instantly share code, notes, and snippets.

@lstebner
Created August 23, 2014 16:39
Show Gist options
  • Save lstebner/aa7dcf8f951cbb56a8b1 to your computer and use it in GitHub Desktop.
Save lstebner/aa7dcf8f951cbb56a8b1 to your computer and use it in GitHub Desktop.
These are the bash alias' I use, mostly git shortcuts
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