Generates commit messages for your staged (but unpushed) commits using ChatGPT.
bash
export OPENAI_API_KEY='sk-...'
bash
$ cargo install commit-gpt
bash
-- Stage your changes
$ git add -A
$ commit-gpt
-- Commit message will be printed, as such:
$ COMMIT MESSAGE: Update README.md with instructions..
-- It will also be copied to your clipboard, so you can just paste.
$ git commit -m "..."
-p, --prompt <PROMPT> The prompt to use when generating the commit message [default: "Generate a Git commit message based on the following diff:"]
-m, --model <MODEL> Which GPT model to use [default: gpt4] [possible values: gpt4, gpt35]
-t, --tokens <TOKENS> The maximum amount of tokens to generate. Tokens as pieces of words, where 1,000 tokens is about 750 words [default: 512]
-h, --help Print help
-V, --version Print version
tokens
parameter. I suggest setting a Usage Limit to be sure.