git-tag

simply command 'git tag' wrapper

Usage no npm install needed!

<script type="module">
  import gitTag from 'https://cdn.skypack.dev/git-tag';
</script>

README

git-tag

NPM Version NPM Downloads Build Status

Install

npm install git-tag

Usage

var gitTag = require('git-tag')({localOnly:true,dir:'/path/to/git/.git'})

Create a tag

gitTag.create('0.0.2015', 'just a message', function(res){
    console.log(res) // >> 0.0.2015
})
gitTag.create('0.0.2015', 'just a message', function(err, res){
    console.log(err, res) // >> null, 0.0.2015
})

Remove a tag

gitTag.remove('0.0.2015', function(res){
    console.log(res) // >> 0.0.2015
})
gitTag.remove('0.0.2015', function(err, res){
    console.log(err, res) // >> null, 0.0.2015
})

Get a latest tag

gitTag.latest(function(res){
    console.log(res) // >> 0.0.2015
})
gitTag.latest(function(err, res){
    console.log(err, res) // >> null, 0.0.2015
})

Get all tags

gitTag.all(function(res){
    console.log(res) // >> ['0.0.2015']
})
gitTag.all("--merged", function(err, res){
    console.log(err, res) // >> null, ['0.0.2015']
})

Test

npm test

License

MIT