https://github.com/givensuman/gh-tag
a github cli extension for managing tags
https://github.com/givensuman/gh-tag
gh-extension git-tags
Last synced: 20 days ago
JSON representation
a github cli extension for managing tags
- Host: GitHub
- URL: https://github.com/givensuman/gh-tag
- Owner: givensuman
- License: mit
- Created: 2026-04-27T20:25:29.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-06T00:40:22.000Z (about 2 months ago)
- Last Synced: 2026-05-06T02:32:08.494Z (about 2 months ago)
- Topics: gh-extension, git-tags
- Language: Go
- Homepage:
- Size: 265 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# gh-tag
A GitHub CLI extension for managing tags.
## Installation
```bash
gh extension install givensuman/gh-tag
```
## Usage
### List tags
```bash
gh tag list
gh tag list --limit 50
gh tag list --search v1.
gh tag list --json
```
### Create a tag
```bash
gh tag create v1.2.3
gh tag create v1.2.3 --commit abc1234
gh tag create v1.2.3 --message "Release v1.2.3"
```
### Delete a tag
```bash
gh tag delete v1.2.3
gh tag delete v1.2.3 --confirm
gh tag delete v1.2.3 --both
```
### View a tag
```bash
gh tag view v1.2.3
```
### Override repository
All commands accept `--repo owner/repo` to target a repository other than the one
detected from the current directory:
```bash
gh tag list --repo cli/cli
```
## License
[MIT](./LICENSE)