git 基本操作
2017-11-22 本文已影响0人
SnorlaxSE
![](https://img.haomeiwen.com/i5267500/241e3392edea019d.png)
![](https://img.haomeiwen.com/i5267500/4b5e2ae60b2b93d5.png)
![](https://img.haomeiwen.com/i5267500/9f4f4ca7ff644e42.png)
![](https://img.haomeiwen.com/i5267500/307355438fdb3bf4.png)
#! /usr/bin/env node
let child_process = require('child_process');
let path = require('path')
console.log(path.resolve(__dirname, 'add+commit+push'))
let iocmds = [
]
let cmds = [
`git add .`,
`git commit -m 'update in ${new Date()}'`,
`git push`
]
for (let iocmd of iocmds) {
child_process.execSync(iocmd, (err, stdout, stderr) => {
if (err) return console.log(err)
console.log(stdout)
});
}
for (let cmd of cmds) {
child_process.execSync(cmd, {
cwd: '<path>'
}, (err, stdout, stderr) => {
if (err) return console.log(err)
console.log(stdout)
});
}