Skip to content

Instantly share code, notes, and snippets.

@douglasjarquin
Created April 13, 2009 16:02
Show Gist options
  • Save douglasjarquin/94504 to your computer and use it in GitHub Desktop.
Save douglasjarquin/94504 to your computer and use it in GitHub Desktop.
# 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