Skip to content

Instantly share code, notes, and snippets.

@m3nt0r
Created April 26, 2013 21:55
Show Gist options
  • Save m3nt0r/5470731 to your computer and use it in GitHub Desktop.
Save m3nt0r/5470731 to your computer and use it in GitHub Desktop.
My bash git-aliases
alias commit='git commit -am'
alias status='git status'
alias checkout='git checkout'
alias merge='git merge --squash'
alias undomerge='git reset --merge'
alias lastlog='git log -1'
alias log='git log --pretty=oneline'
alias pushsvn='git svn dcommit'
alias our='git checkout --ours'
alias their='git checkout --theirs'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment