Created
April 13, 2009 16:02
-
-
Save douglasjarquin/94504 to your computer and use it in GitHub Desktop.
This file contains 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
# Git | |
alias ga='git add . ' | |
alias gb='git branch' | |
alias gba='git branch -a' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' | |
alias gd='git diff | mate' | |
alias gl='git log' | |
alias gpo='git push origin master' | |
alias gpv='git push versiond master' | |
alias gst='git status' | |
alias pull='git pull' | |
alias push='git push' | |
# Git > Subversion | |
alias gsd='git svn dcommit' | |
alias gsr='git svn rebase' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment