Created
October 9, 2025 01:25
-
-
Save olitreadwell/cb69538c21463144e04878f4e4ea015f to your computer and use it in GitHub Desktop.
gitmessage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # A well-formed Git commit message is mandatory. | |
| # Follow the Conventional Commits format with emojis: | |
| # <type>(<scope>): <description> [emoji] | |
| # | |
| # Examples: | |
| # feat(authentication): add Google auth provider β¨ | |
| # fix(api): fix a regression in user creation π | |
| # docs(readme): update contributing guide π | |
| # refactor(db): rename user table to accounts π¨ | |
| # | |
| # --- | |
| # Types: | |
| # feat: A new feature | |
| # fix: A bug fix | |
| # docs: Documentation only changes | |
| # style: Changes that do not affect code logic (white-space, formatting, etc.) | |
| # refactor: A code change that neither fixes a bug nor adds a feature | |
| # perf: A code change that improves performance | |
| # test: Adding missing tests or correcting existing tests | |
| # chore: Other changes that don't modify src or test files | |
| # build: Changes that affect the build system or external dependencies | |
| # ci: Changes to our CI configuration files and scripts | |
| # | |
| # Scopes: (optional, but encouraged) | |
| # The part of the codebase affected by the commit. e.g., 'auth', 'frontend', 'api'. | |
| # | |
| # Emojis (optional, but encouraged): | |
| # β¨ new feature | |
| # π bug fix | |
| # π documentation | |
| # π¨ style | |
| # π¨ refactor | |
| # π performance | |
| # β tests | |
| # β»οΈ refactoring of some sort (e.g., code cleanup) | |
| # βοΈ CI/CD or build system | |
| # π¦ dependencies | |
| # π release / version tags | |
| # π security | |
| # | |
| # --- | |
| # Body: | |
| # A more detailed explanation of the commit. | |
| # | |
| # --- | |
| # Footer: | |
| # BREAKING CHANGE: A change that breaks backward compatibility. | |
| # Closes #<issue number> | |
| # | |
| # | |
| # | |
| # Use this section below to write your commit message: | |
| # | |
| # ---------------------------------------------------- | |
| # <type>(<scope>): <description> | |
| # | |
| # | |
| # | |
| # | |
| # | |
| # | |
| # |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment