Created
June 20, 2022 14:33
-
-
Save rjmacarthy/ac4b7679464dc565749d5d6a707730a3 to your computer and use it in GitHub Desktop.
git aliases
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
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