Today I figured a pretty cool git command. Up to this day, sometimes I get a bit disorganized with the branches, and git stash
came to save the day (or at least some working stamina).
Here is the procedure:
“Oh no! I forgot to change the branch before making changes”
git stash save "name of the mistake"
Now, moving to the correct branch
git checkout the-correct-branch
Recover the modifications
git stash pop
And, a nice command:
git stash list
/comments ~lucasemmoreira/opinions@lists.sr.ht?Subject=Re: All praise stash