Skip to content

Commit

Permalink
Add grbmi/grbmia
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinDelille committed Oct 3, 2021
1 parent 32dacea commit 89bec56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion plugins/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,10 @@ plugins=(... git)
| grba | git rebase --abort |
| grbc | git rebase --continue |
| grbd | git rebase $(git_develop_branch) |
| grbi | git rebase -i |
| grbi | git rebase --interactive |
| grbm | git rebase $(git_main_branch) |
| grbmi | git rebase $(git_main_branch) --interactive |
| grbmia | git rebase $(git_main_branch) --interactive --autosquash |
| grbo | git rebase --onto |
| grbs | git rebase --skip |
| grev | git revert |
Expand Down
4 changes: 3 additions & 1 deletion plugins/git/git.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,10 @@ alias grb='git rebase'
alias grba='git rebase --abort'
alias grbc='git rebase --continue'
alias grbd='git rebase $(git_develop_branch)'
alias grbi='git rebase -i'
alias grbi='git rebase --interactive'
alias grbm='git rebase $(git_main_branch)'
alias grbmi='git rebase $(git_main_branch) --interactive'
alias grbmia='git rebase $(git_main_branch) --interactive --autosquash'
alias grbo='git rebase --onto'
alias grbs='git rebase --skip'
alias grev='git revert'
Expand Down

0 comments on commit 89bec56

Please sign in to comment.