From d0e134669b04a1ea8219a37a26dc51b7cde7468f Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 31 May 2024 14:35:09 -0400 Subject: [PATCH] Add `git brief` to display a minimal commit log --- configs/.gitconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/.gitconfig b/configs/.gitconfig index 1177c91..2b9818d 100644 --- a/configs/.gitconfig +++ b/configs/.gitconfig @@ -19,6 +19,10 @@ tree = log --graph --decorate --abbrev-commit --all \ --pretty=format:'%C(yellow)commit %h%C(auto)%d%n%C(cyan)Author:%Creset %aN %C(dim white)<%aE>%n%C(cyan)Date:%Creset %C(dim white)%ad (%ar)%n%s%n' \ --date=format:'%b %d %Y %H:%M:%S %z' + + # A super quick overview of whats happening + brief = log --pretty=format:'%C(yellow)%h %C(dim white)(%cr) %Creset%s' + breif = brief # Lists all branches with their last commit branches = branch -a -l -vv