https://github.com/taxintt/tagli
https://github.com/taxintt/tagli
git golang
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/taxintt/tagli
- Owner: taxintt
- License: mit
- Created: 2023-03-12T05:54:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-02-10T10:48:16.000Z (5 months ago)
- Last Synced: 2026-02-10T15:53:58.444Z (5 months ago)
- Topics: git, golang
- Language: Go
- Homepage:
- Size: 73.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tagli
tagli is cli tool that handles git tags.
Notice: This cli is under development and in beta so the command may contain open issues.
## list
```bash
❯ tagli list --json | jq .
{
"v0.0.1": "bf29f494fd40a69153460cd0572cc72532fb4a5b",
"v0.0.2": "ebde28d0196866480908670970b49074b5050612",
"v0.0.3": "22552524b04b1c1c4606e1bdb8e1fa39525db1d0",
"v0.0.4": "d997070dd22e6734b4ca6b2d59548795d35119dc"
}
```
## add
```bash
❯ tagli add -t v0.0.6
Tag v0.0.6 was created%
❯ git tag -l
v0.0.1
v0.0.2
v0.0.3
v0.0.4
v0.0.5
v0.0.6
```
## increment
```bash
❯ git tag -l
v0.0.1
v0.0.2
v0.0.3
v0.0.4
v0.0.5
❯ tagli increment -t v0.0.5 --type patch
Tag v0.0.6 was created
❯ git tag -l
v0.0.1
v0.0.2
v0.0.3
v0.0.4
v0.0.5
v0.0.6
```