Fix checkout-pr by using fetch & checkout instead of pull

This commit is contained in:
Louis Lam
2022-09-09 15:49:39 +08:00
parent e90a4f1f34
commit 7b8f9c7655
2 changed files with 9 additions and 3 deletions

View File

@@ -22,7 +22,12 @@ let result = childProcess.spawnSync("git", [ "remote", "add", name, `https://git
console.log(result.stdout.toString());
console.error(result.stderr.toString());
result = childProcess.spawnSync("git", [ "pull", name, branch ]);
result = childProcess.spawnSync("git", [ "fetch", name, branch ]);
console.log(result.stdout.toString());
console.error(result.stderr.toString());
result = childProcess.spawnSync("git", [ "checkout", branch, "--force" ]);
console.log(result.stdout.toString());
console.error(result.stderr.toString());