mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
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
This commit is contained in:
parent
4fb5d02db9
commit
0e1e877ea9
2 changed files with 0 additions and 2 deletions
|
@ -199,7 +199,6 @@ plugins=(... git)
|
||||||
| `gswc` | `git switch -c` |
|
| `gswc` | `git switch -c` |
|
||||||
| `gswd` | `git switch $(git_develop_branch)` |
|
| `gswd` | `git switch $(git_develop_branch)` |
|
||||||
| `gswm` | `git switch $(git_main_branch)` |
|
| `gswm` | `git switch $(git_main_branch)` |
|
||||||
| `gt` | `git tag` |
|
|
||||||
| `gta` | `git tag --annotate` |
|
| `gta` | `git tag --annotate` |
|
||||||
| `gts` | `git tag -s` |
|
| `gts` | `git tag -s` |
|
||||||
| `gtv` | `git tag \| sort -V` |
|
| `gtv` | `git tag \| sort -V` |
|
||||||
|
|
|
@ -347,7 +347,6 @@ alias gsw='git switch'
|
||||||
alias gswc='git switch --create'
|
alias gswc='git switch --create'
|
||||||
alias gswd='git switch $(git_develop_branch)'
|
alias gswd='git switch $(git_develop_branch)'
|
||||||
alias gswm='git switch $(git_main_branch)'
|
alias gswm='git switch $(git_main_branch)'
|
||||||
alias gt='git tag'
|
|
||||||
alias gta='git tag --annotate'
|
alias gta='git tag --annotate'
|
||||||
alias gts='git tag --sign'
|
alias gts='git tag --sign'
|
||||||
alias gtv='git tag | sort -V'
|
alias gtv='git tag | sort -V'
|
||||||
|
|
Loading…
Reference in a new issue