Unverified Commit cc73a929 authored by guenthgr's avatar guenthgr Committed by Carlo Sala

feat(git): add `gpod` alias

Closes #11501
parent aace3a61
......@@ -124,6 +124,7 @@ plugins=(... git)
| gpf | git push --force-with-lease (git version < 2.30) |
| gpf! | git push --force |
| gpoat | git push origin --all && git push origin --tags |
| gpod | git push origin --delete |
| gpr | git pull --rebase |
| gpu | git push upstream |
| gpv | git push --verbose |
......
......@@ -242,6 +242,7 @@ is-at-least 2.30 "$git_version" \
|| alias gpf='git push --force-with-lease'
alias gpf!='git push --force'
alias gpoat='git push origin --all && git push origin --tags'
alias gpod='git push origin --delete'
alias gpr='git pull --rebase'
alias gpu='git push upstream'
alias gpv='git push --verbose'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment