shelljs完成git三连

shelljs完成git三连

记得安装shelljs,npm install shelljs –save -dev

  • shell.js内容如下
#!/usr/bin/env node
var name = process.argv[2] || 'Auto-commit';
var shell = require("shelljs");
var exec = shell.exec;

if (exec('git add .').code !== 0) {
  echo('Error: Git add failed');
  exit(1);
}
if (exec(`git commit -am "${name}"`).code !== 0) {
  echo('Error: Git commit failed');
  exit(1);
}
if (exec('git push').code !== 0) {
  echo('Error: Git commit failed');
  exit(1);
}
exec(`echo git success ${name}`);
  • 使用node执行或者package.json中封装一下
//使用node直接指定
node shell.js '这是我第一次提交'
//在package.json中封装
{
  "private": true,
  "scripts": {
    "push": "node shell.js",
    }
}
//然后运行
npm run push -- '这是我第一次提交'

你可能感兴趣的:(shelljs完成git三连)