mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-06 02:51:32 +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` |
|
| `grba` | `git rebase --abort` |
|
||||||
| `grbc` | `git rebase --continue` |
|
| `grbc` | `git rebase --continue` |
|
||||||
| `grbi` | `git rebase --interactive` |
|
| `grbi` | `git rebase --interactive` |
|
||||||
|
| `grbia` | `git rebase --interactive --autosquash` |
|
||||||
| `grbo` | `git rebase --onto` |
|
| `grbo` | `git rebase --onto` |
|
||||||
| `grbs` | `git rebase --skip` |
|
| `grbs` | `git rebase --skip` |
|
||||||
| `grbd` | `git rebase $(git_develop_branch)` |
|
| `grbd` | `git rebase $(git_develop_branch)` |
|
||||||
|
|
|
||||||
|
|
@ -331,6 +331,7 @@ alias grb='git rebase'
|
||||||
alias grba='git rebase --abort'
|
alias grba='git rebase --abort'
|
||||||
alias grbc='git rebase --continue'
|
alias grbc='git rebase --continue'
|
||||||
alias grbi='git rebase --interactive'
|
alias grbi='git rebase --interactive'
|
||||||
|
alias grbia='git rebase --interactive --autosquash'
|
||||||
alias grbo='git rebase --onto'
|
alias grbo='git rebase --onto'
|
||||||
alias grbs='git rebase --skip'
|
alias grbs='git rebase --skip'
|
||||||
alias grbd='git rebase $(git_develop_branch)'
|
alias grbd='git rebase $(git_develop_branch)'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue