From: Sergey Matveev Date: Sat, 16 Jan 2021 13:38:14 +0000 (+0300) Subject: Sometimes I need to see online git log with dates X-Git-Url: http://www.git.stargrave.org/?p=dotfiles.git;a=commitdiff_plain;h=a95a68295fbc3c828e74561249b70a3fd01379de Sometimes I need to see online git log with dates --- diff --git a/zsh/.zshrc b/zsh/.zshrc index 77a5aba..99f9b08 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -124,6 +124,7 @@ alias Gm="git diff --name-only --diff-filter=M" alias Gam="git commit --amend" alias Gl="git log --oneline --graph --decorate=short" +alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'" alias Gr="git --no-pager log --oneline -n 20 | perl -ne 'print \"@~\$n \$_\"; \$n++'" alias Grr="git --no-pager log --oneline --graph -n 1024 | vi -c 'setlocal filetype=gitrebase buftype=nofile noswapfile' -"