Automating Git Commit Messages with an LLM

To speed up my workflow, I am starting to use this little gem in replace of my normal git commit ... "feat: WHAT DO I SAY??". git diff origin \ | llm -s 'write a short git commit message' \ | git commit -e --file - This pops up a the message in your configured editor to review and apply! TODO (

Feb 28, 2025 - 03:07
 0
Automating Git Commit Messages with an LLM

To speed up my workflow, I am starting to use this little gem in replace of my normal git commit ... "feat: WHAT DO I SAY??".

git diff origin \
  | llm -s 'write a short git commit message' \
  | git commit -e --file -

This pops up a the message in your configured editor to review and apply!

TODO (