1
0
Fork 0

Numerous L* log maps

Removed useless `lh`. Capital `L` is used since `l` is a common Debian alias
for `ls`.
master
Mike Gerwitz 2014-08-21 22:52:08 -04:00
parent b7ccd9be84
commit de83e7f819
2 changed files with 14 additions and 2 deletions

View File

@ -36,7 +36,13 @@ By default, the following mappings are available, each with tab completion:
* `d` - git diff
* `ds` - git diff --stat
* `f` - git fetch
* `lh` - git log --oneline --decorate --color | head
* `L` - git log --show-signature
* `Ld` - git log --show-signature --decorate
* `Lf` - git log --show-signature --first-parent
* `Lg` - git log --show-signature --graph
* `Lgd` - git log --show-signature --graph --decorate
* `Lm` - git log --show-signature --merges
* `Ln` - git log --show-signature --no-merges
* `m` - git merge
* `ma` - git merge --abort
* `p` - git push

View File

@ -15,7 +15,13 @@ CS _git_commit :commit -S -am
d _git_diff :diff
ds _git_diff :diff --stat
f _git_fetch :fetch
lh _git_log |git log --oneline --decorate --color | head
L _git_log :log --show-signature
Ld _git_log :log --show-signature --decorate
Lf _git_log :log --show-signature --first-parent
Lg _git_log :log --show-signature --graph
Lgd _git_log :log --show-signature --graph --decorate
Lm _git_log :log --show-signature --merges
Ln _git_log :log --show-signature --no-merges
m _git_merge :merge
ma : :merge --abort
p _git_push :push