DEV Community

Discussion on: My Squash vs That Squash

Collapse
 
maestromac profile image
Mac Siri

I normally would use git rebase --interactive HEAD~{x} and squash things from there. It easier for me and I make fewer mistakes with it.

Collapse
 
l_giraudel profile image
Loïc Giraudel

I use interactive rebase too, I think it's the easiest to reorder commits, merge similar ones, etc.

I wrote an article about, among other things, interactive rebase: adopteungit.fr/en/methodology/2017...

Collapse
 
hawicaesar profile image
HawiCaesar

I will try this out.