Create signed tag git
GPG-signed annotated tag for releases
git tag -s v1.2.3 -m 'Release 1.2.3'
more git
all 45 commands →
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
Search commit diffs (pickaxe)
git log -S 'functionName' --patch --all