mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
feat(git): introduce grbia alias for git rebase --interactive --autosquash
This commit is contained in:
parent
b1c5315a5f
commit
09f3da121f
2 changed files with 2 additions and 0 deletions
|
|
@ -148,6 +148,7 @@ plugins=(... git)
|
|||
| `grba` | `git rebase --abort` |
|
||||
| `grbc` | `git rebase --continue` |
|
||||
| `grbi` | `git rebase --interactive` |
|
||||
| `grbia` | `git rebase --interactive --autosquash` |
|
||||
| `grbo` | `git rebase --onto` |
|
||||
| `grbs` | `git rebase --skip` |
|
||||
| `grbd` | `git rebase $(git_develop_branch)` |
|
||||
|
|
|
|||
|
|
@ -331,6 +331,7 @@ alias grb='git rebase'
|
|||
alias grba='git rebase --abort'
|
||||
alias grbc='git rebase --continue'
|
||||
alias grbi='git rebase --interactive'
|
||||
alias grbia='git rebase --interactive --autosquash'
|
||||
alias grbo='git rebase --onto'
|
||||
alias grbs='git rebase --skip'
|
||||
alias grbd='git rebase $(git_develop_branch)'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue