1.1.2 • Published 4 years ago

git-has-changed v1.1.2

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

#git-has-changed

Check if a git repo has changed

Installation
npm install git-has-changed
Usage
const gitHasChanged = require('git-has-changed');

let options = {
  repo: 'path/to/repo'
};

gitHasChanged(options, (err, hasChanged) => {
  console.log(hasChanged); // true or false
});

// For synchronous call
let hasChanged = gitHasChanged(options);

For other possible options, please have a look at gitlog.

Test
npm test
Changelog
  • 1.1.2
    • Update dependencies
  • 1.1.1
    • fixed unresolved dependencies
  • 1.1.0
    • added synchronous function call
  • 1.0.2
    • fixed error handling
  • 1.0.1
    • fixed typo
  • 1.0
    • Initial commit
1.1.2

4 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago