Skip to content

thlorenz/resolve-github-refs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

resolve-github-refs build status

Resolves all refs for a remote github repo, including heads, tags and pulls.

var resolve = require('resolve-github-refs')

resolve('joyent/node', function (err, refs) {
  if (err) return console.error(err);
  console.log('The nodejs repo has %d heads, %d tags and %d pulls', refs.heads.length, refs.tags.length, refs.pulls.length);
  console.log('The latest head is "%s"', refs.heads.pop());
  console.log('The latest tag is "%s"', refs.tags.pop());
  console.log('The latest pull is "%s"', refs.pulls.pop());
})
The nodejs repo has 104 heads, 231 tags and 5257 pulls
The latest head is "v0.11.12-release"
The latest tag is "works"
The latest pull is "7394/merge

Installation

npm install resolve-github-refs

API

resolveGithubRefs(repo, cb)

Parameters:
Name Type Description
repo string

github repository of the form user/name

cb function

called back with error or all github refs (including heads, tags and pulls)

Source:

generated with docme

License

MIT

About

Resolves all refs for a remote github repo, including heads, tags and pulls.

Resources

License

Stars

Watchers

Forks

Packages

No packages published