This commit is contained in:
di-sukharev
2023-05-20 21:54:33 +08:00
parent 8f50c021c4
commit 9c87d8f7b8
2 changed files with 0 additions and 2 deletions

View File

@@ -27333,7 +27333,6 @@ async function run(retries = 3) {
const commits = commitsResponse.data;
await import_exec.default.exec("git", ["fetch", "--all"]);
await import_exec.default.exec("git", ["checkout", `origin/${sourceBranch}`]);
await import_exec.default.exec("git", ["pull"]);
await import_exec.default.exec("git", ["status"]);
await import_exec.default.exec("git", ["log", "--oneline"]);
await import_exec.default.exec("git", ["rev-list", "--count", sourceBranch]);

View File

@@ -223,7 +223,6 @@ async function run(retries = 3) {
// --- TEST ---
await exec.exec('git', ['fetch', '--all']);
await exec.exec('git', ['checkout', `origin/${sourceBranch}`]);
await exec.exec('git', ['pull']);
await exec.exec('git', ['status']);
await exec.exec('git', ['log', '--oneline']);
await exec.exec('git', ['rev-list', '--count', sourceBranch]);