oliverdavies.uk/source/_posts/30.md
Oliver Davies 2c517f1d39 Move zet notes to blog posts
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-09-10 18:36:36 +01:00

658 B

title date tags links note permalink
Counting tags 2025-07-12 23:06:44
git
text url
My get-tags scrpt a620888277/packages/get-tags.nix
text url
My count-tags script a620888277/packages/count-tags.nix
true /notes/30-counting-tags

To see all the tags in a repository, run git tag.

To see a filtered list of tags, such as tags that start with a specific year, run git log | grep 2025.

To count these, run git log | grep 2025 | wc -l.