So, I have two branches master and formtest
I have [alias] "git switch", which allows me to lock any work in progress and check out another branch.
"git switch"
switch = !git stash && git checkout
Now I want to create [alias]
"git switchback"
switchback = ???
at startup, I want him to say
switch to this formtest branch
and then run the stash apply application
to unblock the last WIP and bring it back before I first started git switch
source share