Files
gruvbox/node_modules/commitizen/dist/git/init.js

15 lines
234 B
JavaScript

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.init = init;
/**
* Synchronously creates a new git repo at a path
*/
function init(sh, repoPath) {
sh.cd(repoPath);
sh.exec('git init');
}