Created
April 26, 2013 21:55
-
-
Save m3nt0r/5470731 to your computer and use it in GitHub Desktop.
My bash git-aliases
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 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