diff --git a/home/features/cli/git.nix b/home/features/cli/git.nix index 77105e2..5a41d34 100644 --- a/home/features/cli/git.nix +++ b/home/features/cli/git.nix @@ -33,6 +33,9 @@ # Print last commit's hash hash = "log -1 --format='%H'"; + + # Count the number of commits + count = "rev-list --count --all"; }; # }}}