From edd23772dcd951f761343973580a71d8a372585c Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 11 Mar 2024 15:48:16 -0700 Subject: [PATCH] :wrench: Added better git log alias --- aliases | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aliases b/aliases index 9ce488b1..caf236fe 100644 --- a/aliases +++ b/aliases @@ -328,7 +328,8 @@ alias git-s="git status" alias git-ss="git status short" alias git-d="git diff" # for use with notes directory only -alias git-l="git log" +alias git-lo="git log --oneline --follow" +alias {git-l,git-log}="git log --graph --format='format:%C(yellow)%h%C(reset) %s %C(magenta)%cr%C(reset)%C(auto)%d%C(reset)'" # more to just remember than to be used alias git-stsh="git stash" alias git-stsh-a="git stash apply"