1
Fork 0

Add git alias for counting commits

This commit is contained in:
Matei Adriel 2024-02-09 20:18:48 +01:00
parent 7216c1c167
commit a3c58ceff5
No known key found for this signature in database

View file

@ -33,6 +33,9 @@
# Print last commit's hash # Print last commit's hash
hash = "log -1 --format='%H'"; hash = "log -1 --format='%H'";
# Count the number of commits
count = "rev-list --count --all";
}; };
# }}} # }}}