grb
This commit is contained in:
parent
ab2d3d9141
commit
c41c49c30d
1 changed files with 24 additions and 5 deletions
|
@ -182,19 +182,38 @@ alias gpd='git push --delete --verbose'
|
|||
alias gpf='git push --tags --verbose --force'
|
||||
|
||||
# rebase current branch onto another
|
||||
alias grb='git rebase'
|
||||
alias grb="\
|
||||
git \
|
||||
rebase \
|
||||
"
|
||||
|
||||
# abort current rebase
|
||||
alias grba='git rebase --abort'
|
||||
alias grba="\
|
||||
git \
|
||||
rebase \
|
||||
--abort \
|
||||
"
|
||||
|
||||
# continue current rebase
|
||||
alias grbc='git rebase --continue'
|
||||
alias grbc="\
|
||||
git \
|
||||
rebase \
|
||||
--continue \
|
||||
"
|
||||
|
||||
# force rebase without fast-forward
|
||||
alias grbf='git rebase --no-ff'
|
||||
alias grbf="\
|
||||
git \
|
||||
rebase \
|
||||
--force-rebase \
|
||||
"
|
||||
|
||||
# rebase interactively
|
||||
alias grbi='git rebase --interactive'
|
||||
alias grbi="\
|
||||
git \
|
||||
rebase \
|
||||
--interactive \
|
||||
"
|
||||
|
||||
# remove and add to index
|
||||
alias grm="\
|
||||
|
|
Loading…
Reference in a new issue