I am working in a feature branch that's all my own.
I made many small commits as I was figuring things out.
Now I want the commits to tell a story for the PR reviewers,
and not a story of how many stupid mistakes I made!
Instead of git base --interactive
also available as git rebase -i
.¡,
I can also use git reset --mixed
and then build the commits.
Useful links:
Examples
if (FALSE) { # interactive()
parent_path <- withr::local_tempdir()
path <- exo_reset(parent_path = parent_path)
}