This commit is contained in:
parent
df01ee747c
commit
0981b00273
1 changed files with 3 additions and 3 deletions
|
@ -196,9 +196,9 @@ function toSlug(string) {
|
|||
|
||||
await exec("git fetch --all")
|
||||
console.log("remotes: " + (await exec("git branch -r")).stdout);
|
||||
console.log("head: " + (await exec("git show origin/HEAD")).stdout);
|
||||
console.log("head-1: " + (await exec("git show origin/HEAD~")).stdout);
|
||||
console.log("head-5: " + (await exec("git show origin/HEAD~4")).stdout);
|
||||
console.log("head: " + (await exec("git show origin/master")).stdout);
|
||||
console.log("head-1: " + (await exec("git show origin/master~")).stdout);
|
||||
console.log("head-5: " + (await exec("git show origin/master~4")).stdout);
|
||||
const { stdout } = await exec('git log --after="2024-06-03T0:0:0+0000" --pretty=%H origin/HEAD');
|
||||
console.log(stdout);
|
||||
const entries = await Promise.all(stdout.split("\n").filter(p => p).map(hash => new Promise(async (resolve) => {
|
||||
|
|
Loading…
Reference in a new issue