Show tags with messages git
List all tags with their first annotation line
git tag -l -n1
more git
all 45 commands →
Create signed tag
git tag -s v1.2.3 -m 'Release 1.2.3'
Prune remote tracking branches
git fetch --prune
Clone with limited depth
git clone --depth=1 --single-branch --branch main <url>
List contributors by commit count
git shortlog -sn --all
Search commit messages
git log --all --grep='fix:' --oneline