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 do have aliases like these, but with --force-with-lease, so that if I yolo something, I do not break other's work too much.
@amael I only use it on PR branches in my fork, but also this is a good idea regardless