Shortmaps: AS, mm, M, Mi, Mu, MP, pu, r, and rh
Latest batch of accumulating personal maps.master
parent
c2d3c6eb87
commit
fb3577e7cb
|
@ -24,6 +24,7 @@ By default, the following mappings are available, each with tab completion:
|
|||
|
||||
* `a` - git add
|
||||
* `A` - git add -A
|
||||
* `AS` - git add -A && git push
|
||||
* `b` - git branch
|
||||
* `bv` - git branch -v
|
||||
* `B` - git bisect
|
||||
|
@ -48,10 +49,18 @@ By default, the following mappings are available, each with tab completion:
|
|||
* `Ln` - git log --show-signature --no-merges
|
||||
* `m` - git merge
|
||||
* `ma` - git merge --abort
|
||||
* `mm` - git merge --no-ff
|
||||
* `M` - git submodule
|
||||
* `Mi` - git submodule update --init --recursive
|
||||
* `Mu` - git submodule update
|
||||
* `MP` - git submodule update --remote
|
||||
* `p` - git push
|
||||
* `pu` - git push --set-upstream
|
||||
* `P` - git pull
|
||||
* `Pr` - git pull --rebase=preserve
|
||||
* `Prp` - git pull --rebase=preserve && git push
|
||||
* `r` - git reset
|
||||
* `rh` - git reset HEAD :/
|
||||
* `R` - git rebase
|
||||
* `Ri` - git rebase --interactive
|
||||
* `Ra` - git rebase --abort
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
a _git_add :add
|
||||
A _git_add :add -A
|
||||
AS : |git add -A && git stash
|
||||
b _git_branch :branch
|
||||
bv _git_branch :branch -v
|
||||
B _git_bisect :bisect
|
||||
|
@ -24,10 +25,18 @@ Lm _git_log :log --show-signature --merges
|
|||
Ln _git_log :log --show-signature --no-merges
|
||||
m _git_merge :merge
|
||||
ma : :merge --abort
|
||||
mm _git_merge :merge --no-ff
|
||||
M _git_submodule :submodule
|
||||
Mi _git_submodule :submodule update --init --Recursive
|
||||
Mu _git_submodule :submodule update
|
||||
MP _git_submodule :submodule update --remote
|
||||
p _git_push :push
|
||||
pu _git_push :push --set-upstream
|
||||
P _git_pull :pull
|
||||
Pr _git_pull :pull --rebase=preserve
|
||||
Prp _git_pull |git pull --rebase=preserve && git push
|
||||
r _git_reset :reset
|
||||
rh _git_reset :reset HEAD :/
|
||||
R _git_rebase :rebase
|
||||
Ri _git_rebase :rebase --interactive
|
||||
Ra _git_rebase :rebase --abort
|
||||
|
|
Loading…
Reference in New Issue