DEV Community

Discussion on: Git Workflow: Do you commit to master on your solo projects?

Collapse
 
derickhess profile image
Derick Hess

I always do, even on solo projects. Master is always stable. I create branches for features and bugs and only merge into master when they are finished and all tests pass.

Collapse
 
daveskull81 profile image
dAVE Inden

How do you handle managing the branches? Do you use certain branches over and over again? Or do you create a new branch for a new feature / bug fix? Does it get messy to manage the branches between your remote and your local machine?