A CLI that writes your Git commit messages for you with AI. Never write a commit message again. This is a fork of aicommits, which was modified to use Gemini instead of OpenAI. Huge thanks go to them for open-sourcing their work.
The minimum supported version of Node.js is the latest v14. Check your Node.js version with
node --version.
-
Install gemcommits:
npm install -g gemcommits
-
Retrieve your API key from Google AI Studio
Note: If you haven't already, you'll have to create a Google account and get access to the Gemini API.
-
Set the key so gemcommits can use it:
gemcommits config set GEMINI_KEY=<your token>
This will create a
.gemcommitsfile in your home directory.
Check the installed version with:
gemcommits --version
If it's not the latest version, run:
npm update -g gemcommitsYou can call gemcommits directly to generate a commit message for your staged changes:
git add <files...>
gemcommitsgemcommits passes down unknown flags to git commit, so you can pass in commit flags.
For example, you can stage all changes in tracked files with as you commit:
gemcommits --all # or -a👉 Tip: Use the
gemcalias ifgemcommitsis too long for you.
To automatically accept the first generated commit message without any interactive prompt, you can use the --yes flag:
gemcommits --yes # or -yNote: When using
--yes, the committed message will be displayed in the CLI output for your reference.
Sometimes the recommended commit message isn't the best so you want it to generate a few to pick from. You can generate multiple commit messages at once by passing in the --generate <i> flag, where 'i' is the number of generated messages:
gemcommits --generate <i> # or -g <i>Warning: this uses more tokens, meaning it costs more.
If you'd like to generate Conventional Commits, you can use the --type flag followed by conventional. This will prompt gemcommits to format the commit message according to the Conventional Commits specification:
gemcommits --type conventional # or -t conventionalThis feature can be useful if your project follows the Conventional Commits standard or if you're using tools that rely on this commit format.
You can also integrate gemcommits with Git via the prepare-commit-msg hook. This lets you use Git like you normally would, and edit the commit message before committing.
In the Git repository you want to install the hook in:
gemcommits hook installIn the Git repository you want to uninstall the hook from:
gemcommits hook uninstall-
Stage your files and commit:
git add <files...> git commit # Only generates a message when it's not passed in
If you ever want to write your own message instead of generating one, you can simply pass one in:
git commit -m "My message" -
gemcommits will generate the commit message for you and pass it back to Git. Git will open it with the configured editor for you to review/edit it.
-
Save and close the editor to commit!
To retrieve a configuration option, use the command:
gemcommits config get <key>For example, to retrieve the API key, you can use:
gemcommits config get GEMINI_KEYYou can also retrieve multiple configuration options at once by separating them with spaces:
gemcommits config get GEMINI_KEY generateTo set a configuration option, use the command:
gemcommits config set <key>=<value>For example, to set the API key, you can use:
gemcommits config set GEMINI_KEY=<your-api-key>You can also set multiple configuration options at once by separating them with spaces, like
gemcommits config set GEMINI_KEY=<your-api-key> generate=3 locale=enRequired
The Gemini API key. You can retrieve it from Google AI Studio API Keys page.
Default: en
The locale to use for the generated commit messages. Consult the list of codes in: https://wikipedia.org/wiki/List_of_ISO_639-1_codes.
Default: 1
The number of commit messages to generate to pick from.
Note, this will use more tokens as it generates more results.
Default: gemini-2.5-flash
The Gemini model to use. Supported models include:
gemini-2.5-flash(default) - Fast and efficientgemini-2.5-pro- More capable but slowergemini-1.5-flash- Previous generation fast modelgemini-1.5-pro- Previous generation capable model
Tip:
gemini-2.5-proprovides more sophisticated code analysis but may be slower and more expensive thangemini-2.5-flash.
The timeout for network requests to the Gemini API in milliseconds.
Default: 10000 (10 seconds)
gemcommits config set timeout=20000 # 20sThe maximum character length of the generated commit message.
Default: 50
gemcommits config set max-length=100Default: "" (Empty string)
The type of commit message to generate. Set this to "conventional" to generate commit messages that follow the Conventional Commits specification:
gemcommits config set type=conventionalYou can clear this option by setting it to an empty string:
gemcommits config set type=This CLI tool runs git diff to grab all your latest code changes, sends them to Google's Gemini AI, then returns the AI generated commit message.
If you want to help fix a bug or implement a feature in Issues, checkout the Contribution Guide to learn how to setup and test the project
