24 lines
741 B
JavaScript
24 lines
741 B
JavaScript
'use strict';
|
|
|
|
var log = require('fancy-log');
|
|
var exec = require('child_process').exec;
|
|
|
|
module.exports = function (opt, cb) {
|
|
if (!cb && typeof opt === 'function') {
|
|
// optional options
|
|
cb = opt;
|
|
opt = {};
|
|
}
|
|
if (!cb || typeof cb !== 'function') cb = function () {};
|
|
if (!opt) opt = {};
|
|
if (!opt.cwd) opt.cwd = process.cwd();
|
|
if (!opt.args) opt.args = ' ';
|
|
if (!opt.maxBuffer) opt.maxBuffer = 200 * 1024; // Default buffer value for child_process.exec
|
|
|
|
var cmd = 'git status ' + opt.args;
|
|
return exec(cmd, {cwd : opt.cwd, maxBuffer: opt.maxBuffer}, function(err, stdout, stderr) {
|
|
if (err) return cb(err, stderr);
|
|
if (!opt.quiet) log(cmd + '\n' + stdout, stderr);
|
|
if (cb) cb(err, stdout);
|
|
});
|
|
};
|