I just noticed that almost all of the URLs in this contain UTMs.
So as we read and discuss this post, are we deliberating on a valuable piece of insight shared by a peer? Or are we primarily participating in a set of promotional campaigns?
Yep. I find that most of the time, the commit I want to fixup is my last one, so I don't even need the interaction. I use this script almost every day:
last_commit=$(git log --oneline | head -1 | cut -d' ' -f1)
git commit -a --fixup ${last_commit}
GIT_SEQUENCE_EDITOR=true git rebase -i --autosquash ${last_commit}~1
So as we read and discuss this post, are we deliberating on a valuable piece of insight shared by a peer? Or are we primarily participating in a set of promotional campaigns?