DEV Community

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

Collapse
 
dianawebdev profile image
Diana

As soon as a project is "live" (whatever this means), I'll have a release/main branch and a dev branch. I create a new branch for every bigger feature and try to commit coherent parts of the code as often as possible.
Bug fixes are done in the dev-branch, except for complicated stuff, then theres a /bug/OHNOEZ branch.

If I just get into something new and try some stuff, everything is a bit messier, but basically that's it for me.