-
Notifications
You must be signed in to change notification settings - Fork 104
Contributing: Branch Naming Syntax
Jonathan Niles edited this page May 6, 2016
·
4 revisions
This is a guide to help new contributors have clear and consistent branch names when contributing to the project. Contributors are not forced to abide by these suggestions, but these guidelines will help ensure easy reviews and deployment of their branches.
- Use dashes (
-
) in branch names, avoid slashes (/
).- Branches with dashes can be easily deployed as Heroku review applications.
- Begin the branch name with an action, similar to commit message types. For example:
chore-*
refactor-*
test-*
feature-*
- Make branch names as long as needed. There is no reason to omit information just to have a shorter branch name.