DEV Community

Discussion on: What's your commit strategy in personal projects?

Collapse
 
darthbob88 profile image
Raymond Price

One branch for release, with feature branches that get squashed down so I can have a single commit for each feature I add. Individual commits are just "WIP" and "HAIL SATAN", because the unit of change is the PR.

Collapse
 
dianawebdev profile image
Diana

This is an interesting approach, thanks for sharing!