diff --git a/plugins/git/README.md b/plugins/git/README.md index 46c36548a..8ff9fe0b6 100644 --- a/plugins/git/README.md +++ b/plugins/git/README.md @@ -154,6 +154,7 @@ plugins=(... git) | `grba` | `git rebase --abort` | | `grbc` | `git rebase --continue` | | `grbi` | `git rebase --interactive` | +| `grbias` | `git rebase --interactive --autosquash` | | `grbo` | `git rebase --onto` | | `grbs` | `git rebase --skip` | | `grbd` | `git rebase $(git_develop_branch)` | diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 16568f222..62c868fa4 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -344,6 +344,7 @@ alias grb='git rebase' alias grba='git rebase --abort' alias grbc='git rebase --continue' alias grbi='git rebase --interactive' +alias grbias='git rebase --interactive --autosquash' alias grbo='git rebase --onto' alias grbs='git rebase --skip' alias grbd='git rebase $(git_develop_branch)'