git-tag

0.2.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i git-tag

Weekly Downloads

331

Version

0.2.0

License

MIT

Last publish

Collaborators

  • cutsin