git-init
v1.0.0
Published
git-init
Downloads
189
Readme
git-init
Initialize a new git repository.
Installation
$ npm install git-init
Usage
const init = require('git-init')
init('./', (err) => {
if (err) throw err
})
API
init([path], cb(err))
Create a new git repository at path
.