@nodegit/is
v1.0.0
Published
The definitive checking library for git
Downloads
8
Readme
@nodegit/is
The definitive checking library for git
Install
$ npm i @nodegit/isUsage
const is = require('@nodegit/is')
// Test if the current working directory is a git repo
// or inside a git repo
is.git()
// Which is equivalent to
is.git(process.cwd())
// Test if the current working directory is the root of a git repo
is.gitRoot()git(dir = process.cwd()): boolean
- dir
string=process.cwd()the directory to be tested. If not specified, the current working directory will be used
Returns boolean true if cwd is the root of a git repo or inside a git repo
gitRoot(dir = process.cwd()): boolean
- dir
Returns boolean true if cwd is the root of a git repo
