Using upper-case for git rebase shortmap
parent
2bd1bb990a
commit
4fd2c1c62f
|
@ -34,6 +34,10 @@ By default, the following mappings are available, each with tab completion:
|
|||
* `m` - git merge
|
||||
* `p` - git push
|
||||
* `P` - git pull
|
||||
* `R` - git rebase
|
||||
* `Ri` - git rebase --interactive
|
||||
* `Ra` - git rebase --abort
|
||||
* `Rc` - git rebase --continue
|
||||
* `s` - git status
|
||||
* `S` - git stash
|
||||
* `t` - execute tig
|
||||
|
|
|
@ -13,10 +13,10 @@ f _git_fetch :fetch
|
|||
m _git_merge :merge
|
||||
p _git_push :push
|
||||
P _git_pull :pull
|
||||
r __git_rebase :rebase
|
||||
ri _git_rebase :rebase --interactive
|
||||
ra _git_rebase :rebase --abort
|
||||
rc _git_rebase :rebase --continue
|
||||
R __git_rebase :rebase
|
||||
Ri _git_rebase :rebase --interactive
|
||||
Ra _git_rebase :rebase --abort
|
||||
Rc _git_rebase :rebase --continue
|
||||
s : :status
|
||||
S _git_stash :stash
|
||||
t : tig
|
||||
|
|
Loading…
Reference in New Issue