DEV Community

Discussion on: How to organize your git branches

Collapse
 
yatiac profile image
Rafael E.

We use a mix of git flow with ticket based. So each feature corresponds to a ticket and we have a naming convention like : [us|b|t]-[number]-[initials] where:
us = user story
b = bug
t = task

we end up with branches like: us-01234-ye, b-65432-jq and so one.

at the end of each one we just do a feature finish.