diff --git a/plugins/git/README.md b/plugins/git/README.md index c0a651375..3da313b85 100644 --- a/plugins/git/README.md +++ b/plugins/git/README.md @@ -96,6 +96,8 @@ plugins=(... git) | `gg` | `git gui citool` | | `gga` | `git gui citool --amend` | | `ghh` | `git help` | +| `ghsr` | `git history reword` | +| `ghss` | `git history split` | | `glgg` | `git log --graph` | | `glgga` | `git log --graph --decorate --all` | | `glgm` | `git log --graph --max-count=10` | diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 9ef60d69a..81b0a42cf 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -230,6 +230,8 @@ alias gfo='git fetch origin' alias gg='git gui citool' alias gga='git gui citool --amend' alias ghh='git help' +alias ghsr='git history reword' +alias ghss='git history split' alias glgg='git log --graph' alias glgga='git log --graph --decorate --all' alias glgm='git log --graph --max-count=10'