Socket
Book a DemoInstallSign in
Socket

git-walk-refs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-walk-refs

create a readable stream of git commits

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

git-walk-refs

given a function to lookup hashes, a list of hashes to walk, and an optional hash to stop at, return a readable stream of git commits in (largely) reverse chronological order.

var load = require('git-fs-repo')
  , walk = require('git-walk-refs')
  , fs = require('fs')

load(fs, function(err, git) {
  var hashes = git.refs().map(function(ref) {
    return ref.hash
  })

  walk(git.find.bind(git), hashes)
    .on('data', console.log)
})

API

walk(find function(hash, ready), hash array[, untilhash]) -> walk-stream

create a readable/writable stream of git commits.

walk-stream.write(hash)

mark a hash as "seen" arbitrarily. this is useful for the git smart pack protocol.

License

MIT

Keywords

git

FAQs

Package last updated on 18 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts