提交 4d02fca4 作者: 潘亚楠

增加reporter用户用于拉取模板#6

上级 52506258
......@@ -29,7 +29,11 @@ export class Git {
console.log(`${chalk.red('\n delete ')}${this.dir}`);
fs.removeSync(this.dir);
}
execa.sync('git', ['clone', this.gitURL, this.dir]);
// 报告者用户拉取模板
const username = 'reporter';
const password = 'allqj123456@'
const gitUrl = this.gitURL.replace('https://', `https://${username}:${password}@`);
execa.sync('git', ['clone', gitUrl, this.dir]);
}
/**
* @date 2019.12.17
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论