mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-20 03:02:29 +01:00
Add aliases for git rebase and git rebase skip
Original author : Marten Lienen <marten.lienen@gmail.com> Merged & cleaned by: ncanceill <https://github.com/ncanceill>
This commit is contained in:
parent
588943ea57
commit
00072a8831
1 changed files with 4 additions and 1 deletions
|
|
@ -40,10 +40,14 @@ alias grset='git remote set-url'
|
|||
compdef _git grset=git-remote
|
||||
alias grup='git remote update'
|
||||
compdef _git grset=git-remote
|
||||
alias grb='git rebase'
|
||||
compdef _git grb=git-rebase
|
||||
alias grbi='git rebase -i'
|
||||
compdef _git grbi=git-rebase
|
||||
alias grbc='git rebase --continue'
|
||||
compdef _git grbc=git-rebase
|
||||
alias grbs='git rebase --skip'
|
||||
compdef _git grbs=git-rebase
|
||||
alias grba='git rebase --abort'
|
||||
compdef _git grba=git-rebase
|
||||
alias gb='git branch'
|
||||
|
|
@ -161,7 +165,6 @@ alias gunignore='git update-index --no-assume-unchanged'
|
|||
# list temporarily ignored files
|
||||
alias gignored='git ls-files -v | grep "^[[:lower:]]"'
|
||||
|
||||
|
||||
# Submodules
|
||||
alias gf='git fetch'
|
||||
compdef _git gf=git-fetch
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue