diff options
author | Carlo Sala <carlosalag@protonmail.com> | 2023-09-27 08:19:57 +0200 |
---|---|---|
committer | Carlo Sala <carlosalag@protonmail.com> | 2023-09-27 08:19:59 +0200 |
commit | 0e1e877ea9182f87b3ab34cbc2ea944b34f5345e (patch) | |
tree | 66e10c6b4ca59d8115afe8e03f627c170999bd03 /plugins | |
parent | 4fb5d02db94fa87d22afea9825bd5f866e0cd1ac (diff) | |
download | zsh-0e1e877ea9182f87b3ab34cbc2ea944b34f5345e.tar.gz zsh-0e1e877ea9182f87b3ab34cbc2ea944b34f5345e.tar.bz2 zsh-0e1e877ea9182f87b3ab34cbc2ea944b34f5345e.zip |
fix(git)!: remove `gt` alias
BREAKING CHANGE: `gt` alias clashes with Graphite CLI
(https://graphite.dev). See https://github.com/ohmyzsh/ohmyzsh/pull/11910#issuecomment-1736340910
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/README.md | 1 | ||||
-rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
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' |