The change is a minor one: the prompt to Ollama has been modified from "Write a clear, concise Git commit message for changes in file: $FILE." to "Write a SHORT, clear, concise Git commit message for changes in file: $FILE.". This prioritizes shorter messages in the commit messages.

This commit is contained in:
njohnson 2025-09-10 21:56:31 -04:00
parent 10db1eec7d
commit 6e58c8fc2f

View File

@ -23,7 +23,7 @@ for FILE in $FILES; do
# Ask Ollama for a commit message describing this file change # Ask Ollama for a commit message describing this file change
MSG=$(echo "$DIFF" | ollama run gemma3 \ MSG=$(echo "$DIFF" | ollama run gemma3 \
"You are a commit bot. Write a clear, concise Git commit message for changes in file: $FILE. "You are a commit bot. Write a SHORT, clear, concise Git commit message for changes in file: $FILE.
Only output the commit message, nothing else. Only output the commit message, nothing else.
Diff: Diff:
$DIFF") $DIFF")