Are you using gitflow?

Here’s our git branching model.

Image

This is called gitflow.

Basically:

– master is for releases
– develop is what we code on generally
– feature branches are for specific brand new features we want to code and test in isolation.
Pretty simple and yet very organized.

Leave a comment