diff --git a/plugins/git/README.md b/plugins/git/README.md index c10f1d88e..69da310ec 100644 --- a/plugins/git/README.md +++ b/plugins/git/README.md @@ -205,6 +205,8 @@ plugins=(... git) | `gta` | `git tag --annotate` | | `gts` | `git tag -s` | | `gtv` | `git tag \| sort -V` | +| `gtd` | `git tag -d` | +| `gtdr` | `git push --delete origin` | | `gignore` | `git update-index --assume-unchanged` | | `gunignore` | `git update-index --no-assume-unchanged` | | `gwch` | `git whatchanged -p --abbrev-commit --pretty=medium` | diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 99fcc4d07..fa7d1b820 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -391,6 +391,8 @@ alias gswm='git switch $(git_main_branch)' alias gta='git tag --annotate' alias gts='git tag --sign' alias gtv='git tag | sort -V' +alias gtd='git tag -d' +alias gtdr='git push --delete origin' alias gignore='git update-index --assume-unchanged' alias gunignore='git update-index --no-assume-unchanged' alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'