Get synchronously the git root path
$ npm i git-root --save
or
$ yarn add git-root
Returns:
- String: The git root or empty string if it is not a git repository
const gitRoot = require('git-root');
gitRoot(); // '' or git root of process.cwd()
gitRoot('any/git/repo'); // '' or git root of the directory 'any/git/repo'
MIT © Jan Peer Stöcklmair