summaryrefslogtreecommitdiff
path: root/dot/local/bin/git-autotag
blob: edf94742cba8b06e63f0ac60417068487b566e4e (plain)
1
2
3
4
5
#!/bin/sh
uid=$(gpg -K --with-colons | grep '^uid:' | cut -d: -f10) || exit
[ "$uid" ] || exit

exec git tag -u "$uid" "$@"