Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taxintt/tagli
https://github.com/taxintt/tagli
git golang
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/taxintt/tagli
- Owner: taxintt
- License: mit
- Created: 2023-03-12T05:54:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T15:37:09.000Z (6 months ago)
- Last Synced: 2024-07-16T08:18:15.953Z (6 months ago)
- Topics: git, golang
- Language: Go
- Homepage:
- Size: 86.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
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
```