Categorygithub.com/hatchify/git-tagger
repositorypackage
0.4.79
Repository: https://github.com/hatchify/git-tagger.git
Documentation: pkg.go.dev

# README

Git Tagger

Git tagger helps with incrementing git tags in SEMVER format

Usage

Increment patch

# Patch is the default type, so it's not needed to be explicitly set
git-tagger

# If you want to be verbose with your version type
git-tagger --type patch

Increment minor

# Set type as "minor"
git-tagger --type minor

Increment major

# Set type as "major"
git-tagger --type major