summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/git/README.md1
-rw-r--r--plugins/git/git.plugin.zsh1
2 files changed, 0 insertions, 2 deletions
diff --git a/plugins/git/README.md b/plugins/git/README.md
index 5b2db55fa..9c16cb6e7 100644
--- a/plugins/git/README.md
+++ b/plugins/git/README.md
@@ -199,7 +199,6 @@ plugins=(... git)
| `gswc` | `git switch -c` |
| `gswd` | `git switch $(git_develop_branch)` |
| `gswm` | `git switch $(git_main_branch)` |
-| `gt` | `git tag` |
| `gta` | `git tag --annotate` |
| `gts` | `git tag -s` |
| `gtv` | `git tag \| sort -V` |
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index ba90c936e..cb848b407 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -347,7 +347,6 @@ alias gsw='git switch'
alias gswc='git switch --create'
alias gswd='git switch $(git_develop_branch)'
alias gswm='git switch $(git_main_branch)'
-alias gt='git tag'
alias gta='git tag --annotate'
alias gts='git tag --sign'
alias gtv='git tag | sort -V'