Emacs Magit Spin-off branches: how to forget pain when using git

Who knows me can say that I tend to live into Emacs. Well, not as much as I would, but I’ve always an Emacs instance (or a few) running and ready to obey!
Who knows Emacs, knows also that it provides magit: absolutely the best git porcelain ever built!

Magit has a very interesting feature: spin off branches.
It happened to all of us: we do a few commits before realizing we are on the wrong branch (it could be master or a branch we were working before).
How to fix it? Well, the workflow is to create another branch (that will include those commits), get back to the wrong branch and reset the number of commits you want to disappear.

Being magit the wonderful piece of code it is, it provides you a very handy shortcut: you create a spinoff branch. A spin-off branch is a new branch that automatically resets its ancestor branch back. Back to…the last published commit.
The official documentation explains it very well:

b s (magit-branch-spinoff)

    This command creates and checks out a new branch starting at and tracking the current branch. That branch in turn is reset to the last commit it shares with its upstream. If the current branch has no upstream or no unpushed commits, then the new branch is created anyway and the previously current branch is not touched.


I love Magit! I love Emacs!

The article Emacs Magit Spin-off branches: how to forget pain when using git has been posted by Luca Ferrari on June 20, 2022