Is the standard procedure not working?
- make changes
git stash save
git branch xxx HEAD
git checkout xxx
git stash pop
Shorter:
- make changes
git stash
git checkout -b xxx
git stash pop
Is the standard procedure not working?
git stash save
git branch xxx HEAD
git checkout xxx
git stash pop
Shorter:
git stash
git checkout -b xxx
git stash pop