我正在尝试git branch | grep \*
像这样运行命令:
require('child_process').exec('git branch | grep \*', function(err){
console.log(err);
});
但我不断收到错误{ [Error: Command failed: ] killed: false, code: 1, signal: null }
为什么会发生这种情况,我该怎么做?
我正在尝试git branch | grep \*
像这样运行命令:
require('child_process').exec('git branch | grep \*', function(err){
console.log(err);
});
但我不断收到错误{ [Error: Command failed: ] killed: false, code: 1, signal: null }
为什么会发生这种情况,我该怎么做?