DEV Community

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

Collapse
 
mtancoigne profile image
Manuel Tancoigne

For small projects, I have a master + features branches, for others, a stable master, a "less" stable develop + features branches.

In every cases, small commits and regular interactive rebases in feature branches are my way to keep it clean.

Oh, and no merge commits, only fast-forward merges.