From 84ea687715b6c56fed765f960084d0e990c979c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sat, 13 Jan 2024 23:23:58 +0100 Subject: [PATCH] Changed command `glog`: now it shows a author email too --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 4c40e6a..0bfb820 100644 --- a/.zshrc +++ b/.zshrc @@ -221,7 +221,7 @@ alias gpu="git fetch -p -q; git pull; git submodule foreach git pull origin mast alias gch="git checkout" alias gst="git status -s" alias gdiff="git --no-pager diff" -alias glog="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches" +alias glog="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an - %ae>%Creset' --abbrev-commit --branches" alias gshow="git --no-pager show --color --pretty=format:%b" alias gd=gshow alias guntrackfile="git update-index --assume-unchanged"