diff options
author | Mike Beattie <mike@ethernal.org> | 2022-02-24 23:45:27 +0000 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2022-02-24 23:45:27 +0000 |
commit | 61c9bd5a0488a1d1a8b9405caf83bd28273ba830 (patch) | |
tree | 5b90bb25be1e27279becdf32673786d6d1cdc13d | |
parent | 50d88fc74d31cdbe43c16fc216d84e5b2b8b6c32 (diff) |
GIT: extend log aliases with non --all variants
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | .gitconfig | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ [alias] - ll = !git --no-pager log --format=\"%C(auto)%h%C(green)%>(12,trunc) %ar%C(cyan)%>(12,trunc) %aN%C(auto)%d% s\" --all --graph - lll = !git --no-pager log --format=\"%C(auto)%h %ad (%C(green)%>(12,trunc)%ar%C(reset)) %C(cyan)%>(12,trunc)%aN%C(auto)%d% s\" --all --graph + llb = !git --no-pager log --format=\"%C(auto)%h%C(green)%>(12,trunc) %ar%C(cyan)%>(12,trunc) %aN%C(auto)%d% s\" --graph + ll = !git llb --all + lllb = !git llb --format=\"%C(auto)%h %ad (%C(green)%>(12,trunc)%ar%C(reset)) %C(cyan)%>(12,trunc)%aN%C(auto)%d% s\" + lll = !git lllb --all [credential] helper = cache --timeout=3600 [include] |