mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
feat: add aliases for git history reword/split added in git 2.54
This commit is contained in:
parent
2d5841740a
commit
602cfd6beb
2 changed files with 4 additions and 0 deletions
|
|
@ -96,6 +96,8 @@ plugins=(... git)
|
||||||
| `gg` | `git gui citool` |
|
| `gg` | `git gui citool` |
|
||||||
| `gga` | `git gui citool --amend` |
|
| `gga` | `git gui citool --amend` |
|
||||||
| `ghh` | `git help` |
|
| `ghh` | `git help` |
|
||||||
|
| `ghsr` | `git history reword` |
|
||||||
|
| `ghss` | `git history split` |
|
||||||
| `glgg` | `git log --graph` |
|
| `glgg` | `git log --graph` |
|
||||||
| `glgga` | `git log --graph --decorate --all` |
|
| `glgga` | `git log --graph --decorate --all` |
|
||||||
| `glgm` | `git log --graph --max-count=10` |
|
| `glgm` | `git log --graph --max-count=10` |
|
||||||
|
|
|
||||||
|
|
@ -230,6 +230,8 @@ alias gfo='git fetch origin'
|
||||||
alias gg='git gui citool'
|
alias gg='git gui citool'
|
||||||
alias gga='git gui citool --amend'
|
alias gga='git gui citool --amend'
|
||||||
alias ghh='git help'
|
alias ghh='git help'
|
||||||
|
alias ghsr='git history reword'
|
||||||
|
alias ghss='git history split'
|
||||||
alias glgg='git log --graph'
|
alias glgg='git log --graph'
|
||||||
alias glgga='git log --graph --decorate --all'
|
alias glgga='git log --graph --decorate --all'
|
||||||
alias glgm='git log --graph --max-count=10'
|
alias glgm='git log --graph --max-count=10'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue