1
0

auto-git:

[change] main.js
This commit is contained in:
2025-05-24 14:21:19 +02:00
parent 7cb578b406
commit 760bbee6a2

View File

@@ -211,12 +211,12 @@ async function generateLLMCommitMessages(folderPath, hashes) {
const diff = commits[0].diff; const diff = commits[0].diff;
return `Generate a concise git commit message for these changes: return `Generate a concise git commit message for these changes:
${diff} ${diff}
Don't give any feedback on the code, just analyze what changed and write the git commit message. Keep it short.`; Don't give any feedback on the code, just analyze what changed and write the git commit message. Keep it short! A commit message MUST NOT exceed 70 characters!`;
} else if (commits.length > 1) { } else if (commits.length > 1) {
// Multiple commits: Squash them, give all diffs as a big change. // Multiple commits: Squash them, give all diffs as a big change.
const combinedDiffs = commits.map(c => c.diff).join('\n\n'); const combinedDiffs = commits.map(c => c.diff).join('\n\n');
return `Analyze the following code changes (from multiple commits). We will squash them to a single commit and need a concise git commit message for that. return `Analyze the following code changes (from multiple commits). We will squash them to a single commit and need a concise git commit message for that.
Don't give any feedback on the code, just analyze what changed and write the git commit message. Keep it short. Don't give any feedback on the code, just analyze what changed and write the git commit message. Keep it short! A commit message MUST NOT exceed 70 characters!
Here are the combined diffs: Here are the combined diffs:
${combinedDiffs}`; ${combinedDiffs}`;
} else { } else {