Hacker News new | ask | show | jobs
by trashburger 649 days ago
By doing this, you break commit atomicity and make bisects hell. Please don’t do this. Commits aren’t perfect at first for sure, but they should be by the time you make them reviewable.
1 comments

It's fine to break commit atomicity on feature branches. You can use git bisect --first-parent on you development/master branch.
I completely disagree. In doing so you lose all visibility into the components and gradual evolution of the code that atomic commits provide. Same thing with squashing (which is just the worst).