Created
January 25, 2011 19:15
-
-
Save karlstolley/795451 to your computer and use it in GitHub Desktop.
My git aliases, which bespeak an unsound mind--but they work for me. So hey. Other prompt/terminal stuff, too.
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
# Karl's Git Aliases | |
alias gits='git status' | |
alias gita='git add' | |
alias gitm='git commit -m' | |
alias gitam='git commit -am' | |
alias gitpom='git push origin master' | |
alias gitplm='git pull origin master' | |
alias gitl='git log --pretty=oneline --abbrev-commit' | |
alias gitlf='git log --pretty=oneline --abbrev-commit --name-only' | |
alias gitdw='git diff --color-words' | |
alias gitra='git remote add' | |
alias gitcb='git checkout -b' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment