From 9aeef4f447e4c0ce5f64912b86190053e402d6e0 Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Tue, 2 Jun 2026 14:42:01 -0500 Subject: [PATCH] Update gitconfig history command It seems newer get has a conflicting command. Use `lg` (short for `log` or `log --graph`) instead. --- gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitconfig b/gitconfig index a1248ac..1324158 100644 --- a/gitconfig +++ b/gitconfig @@ -20,7 +20,7 @@ last = log -1 HEAD cl = clone cleanup = "!git branch --merged | rg -v \"(\\*|master|main|dev|develop)\" | xargs -r git branch -d" - history = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit + lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit ignore = update-index --assume-unchanged --skip-worktree unignore = update-index --no-assume-unchanged --no-skip-worktree ls-ignores = "!git ls-files -v | rg "^h" | cut -f2 -d' '"