Skip to content

Instantly share code, notes, and snippets.

@rgoldfinger
Last active January 18, 2019 03:51
Show Gist options
  • Save rgoldfinger/123ea3c836cad687d2da2ac9a2e9575b to your computer and use it in GitHub Desktop.
Save rgoldfinger/123ea3c836cad687d2da2ac9a2e9575b to your computer and use it in GitHub Desktop.
git aliases
alias gco='git checkout'
alias gpr='git pull --rebase origin master'
alias gcb='git checkout -b'
alias gbd='git branch -D'
alias gl='git log'
alias gs='git status'
alias ga.='git add .'
alias ga='git add'
alias gpo='git push -f origin'
alias gcm='git commit -m '
alias gca='git commit --amend'
alias grc='git rebase --continue'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment