Skip to content

Latest commit

 

History

History
78 lines (60 loc) · 1.56 KB

README.md

File metadata and controls

78 lines (60 loc) · 1.56 KB

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