AltraTools
Back to Tools

Git Commit Message Generator

Create conventional commit messages following the Angular commit convention

A new feature

Use imperative: "add feature" not "added feature"0/72
// Your commit message will appear here...

📖 Conventional Commits Format

<type>(<scope>): <subject>

<body>

<footer>

💡 Best Practices

  • • Use imperative mood: "add" not "added" or "adds"
  • • Keep subject under 50 characters (max 72)
  • • Separate subject from body with a blank line
  • • Explain the "what" and "why" in the body, not the "how"
  • • Reference issues in the footer: Closes #123