DEV Community

Discussion on: Keep your Git history clean - 101

Collapse
 
chriskarpyszyn profile image
Chris Karpyszyn

Not always useful as a feature branch may contain multiple units of work that could benefit from seperate commits. Really just depends on the scope of project and workflow.

Collapse
 
simbo1905 profile image
Simon Massey

sure. we prefer to break down work into small units that can be continuous integrated if we can. sometimes something large cannot. shipping something bigger in chunks hidden by a feature flag can reduce the integration risks. many teams work in sprints and try hard to make atomic tasks that can land as single commit where possible.