diff options
author | Mike Beattie <mike@ethernal.org> | 2018-05-29 20:54:01 +1200 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2018-05-29 20:54:01 +1200 |
commit | 29617a00b99b629344e0d8ba8349637b0fdb7eb2 (patch) | |
tree | 59cf93ef925ce89a38193bbf0219342f7fbc4652 | |
parent | 03c02584bf39be8aa4539b39b3ee6524bcbbfc18 (diff) |
GIT: Add aliases for nicer log output
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | .gitconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..db56610 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,3 @@ +[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 |