A neat trick I learned from Kagi Assistant today is how to make a shortcut for starting a git interactive rebase of all commits on the current branch. Run git config --global alias.ri '!git rebase -i $(git merge-base HEAD @{u})' After that you run git ri which is easy to remember.
Read other posts