Skip to content

Instantly share code, notes, and snippets.

@rjmacarthy
Created June 20, 2022 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjmacarthy/ac4b7679464dc565749d5d6a707730a3 to your computer and use it in GitHub Desktop.
Save rjmacarthy/ac4b7679464dc565749d5d6a707730a3 to your computer and use it in GitHub Desktop.
git aliases
alias gp="git push origin HEAD"
alias gf="git fetch upstream && git fetch origin"
alias gld="git log upstream/master..HEAD"
alias grus="git rebase upstream/master"
alias gsa0="git stash apply stash@{0}"
alias gro="git reset --hard origin/master"
alias gru="git reset --hard upstream/master"
alias gsui="git submodule update --init"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment