Skip to main content
Estimated time: 5 minutes

Generate release notes in three steps

This guide walks you through installing HelixCommit and generating your first set of release notes.

Install HelixCommit

Install HelixCommit using pip:
Verify the installation:
You should see the version number displayed, confirming HelixCommit is installed correctly.

Navigate to your Git repository

Change to a directory containing a Git repository with commit history:
If you don’t have a repository handy, you can create a test one or use HelixCommit’s own repository for testing.
Verify you’re in a Git repository:

Generate your release notes

Run HelixCommit to create release notes for unreleased changes:
You should see structured release notes printed to your terminal, organized by commit type (features, fixes, chores, etc.).

Understanding the command

Let’s break down what each option does:
command
required
The main command for generating release notes from Git history.
flag
Generates notes for commits between the latest tag and HEAD. Perfect for previewing what’s changed since your last release.
flag
Skips GitHub API calls to fetch pull request information. Useful for offline work or when you don’t need PR metadata.
string
default:"markdown"
Output format for your release notes. Options: markdown, html, or text.

Save output to a file

To save your release notes instead of printing them to the terminal:
The --out option writes the generated content to a file. The directory will be created automatically if it doesn’t exist.

Generate notes between specific tags

To create release notes for a specific version range:
This generates notes for all commits between the two tags.

Common use cases

Preview what’s changed since your last release:
Perfect for reviewing changes before creating a new release.

Example output

Here’s what HelixCommit output looks like:
HelixCommit automatically categorizes commits based on Conventional Commits format (feat:, fix:, chore:, etc.).

Verify your output

HelixCommit groups commits by type. Verify that:
  • Features are under Features
  • Bug fixes are under Bug Fixes
  • Documentation changes are under Documentation
  • Other changes are appropriately categorized
If commits aren’t categorized correctly, ensure they follow Conventional Commits format.
When generating HTML output:
Open release.html in a browser to verify formatting and styling.
Try generating notes for different ranges to ensure accuracy:

Next steps

Now that you’ve generated your first release notes, explore more advanced features:

CLI reference

Explore all available commands and options

Configuration

Customize HelixCommit for your workflow

AI features

Enable AI-powered summaries for better release notes

Examples

See real-world usage examples and patterns

Troubleshooting

If HelixCommit reports no commits:
  1. Verify you’re in a Git repository: git status
  2. Check that you have commits: git log
  3. If using tags, verify they exist: git tag -l
  4. Try without filtering: helixcommit generate --format markdown
If you see GitHub API permission errors:
  1. Set a GitHub token: export GITHUB_TOKEN=your_token
  2. Or skip PR lookups: --no-prs flag
  3. Verify token has correct permissions at github.com/settings/tokens
If output is empty or unexpected:
  1. Check commit message format follows Conventional Commits
  2. Verify the commit range contains commits: git log --oneline
  3. Try increasing verbosity with --max-items 100 to process more commits
  4. Review excluded merge commits with --no-merge-commits flag removed
Need more help? Check out the full documentation or visit our GitHub repository to open an issue.