Git Branch Name Generator
Generates an example Git branch name in the common 'type/description' format (e.g. feature/add-login-form) — a naming-convention example, not tied to any real repository.
What it builds, and how many ways
Each result is assembled to this shape: [type] + [slug].
- slug: 30 options
- type: 12 options
Taken together those banks can be assembled 360 different ways, repeating after about 24.
Some results it can produce:
- feature/add-csv-export
- refactor/debounce-search-input
- revert/log-failure-reason
- hotfix/fix-cart-total
A fixed sample so this page stays the same between visits. Your own results are assembled at random, each slot filled independently and each press independent of the last, so the same result can come up twice — past the repeat figure above, seeing one twice is more likely than not.
How to use this tool
- Press generate for a branch name.
- Generate again for another one.
Common use cases
- Teaching Git branch-naming conventions
- Placeholder examples in documentation
- Quick naming-convention inspiration
Practical tips
- Keep the ticket reference in the branch name — future you will want to find the branch from the issue, not the other way round.
- Agree a prefix convention across the team; mixed conventions make branch lists much harder to scan.
Each part of the result is chosen independently with your browser's cryptographic random number generator, so every option in a bank is equally likely. How Generate Random works.
Related generators
- Commit Message Prompt GeneratorAn example conventional-commit-style message, for practising commit conventions.
- Ticket ID GeneratorGenerate a fictional issue-tracker-style ticket ID example, like PROJ-4821.
- Random IPv6 Address GeneratorAn IPv6 address for placeholder config or test data.
- Semver Range ResolverSays which versions a range admits and why each of the others was rejected, including the prerelease rule.