git-tag · git:20260712.e55f142 · 2026-07-12 · sha256 7385821a800ddedd
git-tag git:20260712.e55f142A
Immutable. This exact content is served forever at /api/v1/blob/7385821a800ddedd.
--- name: git-tag description: Manage lightweight and annotated git tags. --- # Git Tag Skill Create, list, delete, and manage git tags for releases and milestones. ## Capabilities - List tags: `git tag` or `git tag -l "pattern*"` - Create lightweight tag: `git tag <name>` - Create annotated tag: `git tag -a <name> -m "message"` - Create signed tag: `git tag -s <name> -m "message"` - Tag specific commit: `git tag <name> <commit>` - Delete local tag: `git tag -d <name>` - Push tag: `git push origin <name>` - Push all tags: `git push --tags` - Delete remote tag: `git push --delete origin <name>` - View tag details: `git show <name>` - Checkout tag: `git checkout <name>` (detached HEAD warning) ## Usage Triggered when user says "tag", "create release tag", "list tags", "delete tag". Use annotated tags (`-a`) for releases and milestones. Warn about force-pushing tags.