Change alias for git pull to gp

The rest of the `git pull` aliases are prefixed with `gp` and earlier we are using `gl` to mean `git log`. I believe the intention was to have `git pull` be `gp`, not `gl`.
This commit is contained in:
Steven Burgess 2024-05-24 08:51:57 -04:00 committed by GitHub
commit 222caf79a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -259,7 +259,7 @@ alias gmum='git merge upstream/$(git_main_branch)'
alias gmtl='git mergetool --no-prompt'
alias gmtlvim='git mergetool --no-prompt --tool=vimdiff'
alias gl='git pull'
alias gp='git pull'
alias gpr='git pull --rebase'
alias gprv='git pull --rebase -v'
alias gpra='git pull --rebase --autostash'