A tool to check if files are added in a git repository
npm install is-git-added

Checks synchronously if files are added in a git repository
``sh`
$ npm i is-git-added --save`
orsh`
$ yarn add is-git-added
- false: Nothing is added/in the HEAD, or it is no git repositorytrue
- : Changes are ready to commit. Files are added.
`js
const isGitAdded = require('is-git-added');
isGitAdded(); // true or false of process.cwd()
isGitAdded('any/git/repo'); // true or false
``
MIT © Jan Peer Stöcklmair