diff --git a/plugins/git/README.md b/plugins/git/README.md
index 1c3f8acf0..9972a6d8d 100644
--- a/plugins/git/README.md
+++ b/plugins/git/README.md
@@ -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                                                                                                                                                                       |
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index 70e6b4439..b016d80db 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -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'