DEV Community

The Git fixup workflow

Alexis Reigel on September 29, 2018

Original post: www.koffeinfrei.org/2018/09/18/the-git-fixup-workflow/ Introduction The GitHub flow, or a similar Git strategy where ...
Collapse
 
ferricoxide profile image
Thomas H Jones II

Even better, if you've also set up for doing signed-commits (inclusive of "must sign commits" on your protected-branch, set up your --fixup/--squashalias to include-c commit.gpgsign=false`.

Collapse
 
fantomx1 profile image
FantomX1

The texting <FIRST COMMIT THAT NEEDS FIXING>~1 is not quite obvious, that it is the parent or the previous commit of the commit that needs fixing, otherwise thanks, well put article

Collapse
 
kwstannard profile image
Kelly Stannard

Hey, I got linked here from a post I just wrote. If you don't mind, I expanded on this with --squash and improved aliases.

dev.to/kwstannard/how-to-plan-an-i...