Socket
Book a DemoInstallSign in
Socket

get-first-commit

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-first-commit

Returns a git repository's first commit as a JavaScript object.

latest
Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
361
38.31%
Maintainers
1
Weekly downloads
 
Created
Source

get-first-commit NPM version Build Status

Returns a git repository's first commit as a JavaScript object.

Install

Install with npm

$ npm i get-first-commit --save

Usage

var getFirstCommit = require('get-first-commit');

getFirstCommit(function(err, commit) {
  if (err) return console.log(err);
  console.log(commit);
});

Results in

{ commit: 'b371794fbdbdd68498e8c9f3bf766b095ad2fb30',
  author: 'jonschlinkert <jon.schlinkert@sellside.com>',
  date: 'Sun Nov 22 07:44:07 2015 -0500',
  message: 'first commit' }

API

firstCommit

Asynchronously get the first commit from a git repository.

Params

  • cwd {String}: current working directory
  • callback {Function}
  • returns {Object}

Example

firstCommit('foo/.git', function(err, commit) {
  if (err) return console.log(err);
  // do stuff with commit
});

.sync

Synchronously get the first commit from a git repository.

Params

  • cwd {String}: current working directory
  • returns {Object}

Example

var commit = firstCommit.sync('foo/.git');

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.

This file was generated by verb-cli on November 22, 2015.

Keywords

commit

FAQs

Package last updated on 22 Nov 2015

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