612 B
612 B
title | date | tags | links | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Counting tags | 2025-07-12 23:06:44 |
|
|
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
.