From 566feefd10d042b8fbb3d5abb0cc35627ea51662 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Wed, 26 Dec 2012 22:00:40 -0600 Subject: [PATCH] .gitconfig: No limit on "git ll" "git ll" alias previously only showed up to 16 log entries. "git ll" was an unlimited version. Eliminate "git lll" entirely and make "git ll" unlimited instead. --- .gitconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitconfig b/.gitconfig index 06ca561..ec5b42c 100644 --- a/.gitconfig +++ b/.gitconfig @@ -10,8 +10,7 @@ co = checkout tags = tag -n1 -l # Log helpers - ll = log -16 --pretty='format:%C(yellow)%h%Creset %s%C(green bold)%d%Creset %C(black bold)(by %an, %ar)%Creset' - lll = log --pretty='format:%C(yellow)%h%Creset %s%C(green bold)%d%Creset %C(black bold)(by %an, %ar)%Creset' + ll = log --pretty='format:%C(yellow)%h%Creset %s%C(green bold)%d%Creset %C(black bold)(by %an, %ar)%Creset' graph = log --all --graph --topo-order --pretty='format:%C(yellow)%h%Creset %s %C(black bold)(by %an)%Creset%C(green bold)%d%Creset%n' # Remote helpers track = !git-track -- 2.43.0