DEV Community

Discussion on: Which is the right git workflow for my next project?

Collapse
 
abulkay profile image
AbdulBasit KABIR

I'm curious how you use git flow on a single-dev project.

Collapse
 
chrischarabaruk profile image
Chris Charabaruk

I've done it, and it's no different than on a multiple-dev project. You're still keeping each feature, fix, etc. on their own branches that you merge into master or develop branch when ready. It's just that there's nobody else doing the same thing on your repo.

Thread Thread
 
abulkay profile image
AbdulBasit KABIR

That makes a lot of sense. So you'll be tracking what types of changes each unit of work introduces.