Skip to content

Instantly share code, notes, and snippets.

@JangoSteve
Created November 2, 2011 05:08
Show Gist options
  • Save JangoSteve/1332912 to your computer and use it in GitHub Desktop.
Save JangoSteve/1332912 to your computer and use it in GitHub Desktop.
git aliases for bash profile - ~/.bash_profile_includes/git.sh
alias gco="git checkout"
alias gst="git status"
alias gcm="git commit -m"
alias gca="git commit --amend"
alias gpr="git pull --rebase"
alias gpl="git pull"
alias gpu="git push"
alias gri="git rebase -i"
alias gre="git rebase"
alias gad="git add"
alias gcl="git clone"
alias gme="git merge"
alias glo="git log"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment