Using git's `autostash` and `autosquash` for effortless fixups
Applying fixups to your last commit in git is pretty easy using git commit --amend, but applying fixups to older commits can be much more involved. Using git rebase in combination with its --autostash and --autosquash options makes these fixups a lot easier. Combining a rebase...