for your consideration: two git aliases that are very useful for debugging CI workflows

[alias]
oops = commit --amend --no-edit
yolo = "!yolo() { git add -- \"$@\"; git oops; git push --force-with-lease; }; yolo"
@whitequark I prefer fixups these days so there's only _one_ history rewrite on such occasions. Makes it easier to check or bring back what I've already tried, too.
@OmegaPolice I do both!