UNPKG
lazzygit
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
lazzygit git awesome alias
github.com/siwymilek/lazygit
siwymilek/lazzygit
lazzygit
/
index.js
7 lines
(6 loc)
•
167 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
spawn = require(
'child_process'
).spawn;
const
exec = (cmd,
args
) => {
args
.unshift(cmd); spawn(
'git'
,
args
, {stdio:
"inherit"
}); }; exports.exec = exec;