From 8e420cc40bee043632c2801853df7fe6f7ab8983 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 1 Jun 2025 09:46:46 +0200 Subject: [PATCH] auto-git: [change] main.js --- main.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/main.js b/main.js index 972e978..cd30fc8 100644 --- a/main.js +++ b/main.js @@ -965,28 +965,6 @@ async function rewordCommitsSequentially(repoPath, commitMessageMap, hashes) { const commitMsg = msg.replace(/(["$`\\])/g, '\\$1'); const sequenceEditor = `sed -i '' '1s/pick/reword/'`; - // await auf Promise – aber OHNE zweiten for! - await new Promise((resolve, reject) => { - const proc = spawn('git', [ - 'rebase', '--continue', '-i', `${hash}^` - ], { - cwd: repoPath, - env: { - ...process.env, - GIT_SEQUENCE_EDITOR: sequenceEditor, - GIT_EDITOR: `echo "${commitMsg}" >` - }, - stdio: 'inherit' - }); - proc.on('exit', code => code === 0 ? resolve() : reject(new Error(`Failed to reword ${hash}`))); - }); - console.log(`[AutoGit] Reworded commit ${hash} ✔`); - } - console.log('[AutoGit] All specified commit messages updated!'); -} -/* - -