Is the standard procedure not working?
- make changes
git stash savegit branch xxx HEADgit checkout xxxgit stash pop
Shorter:
- make changes
git stashgit checkout -b xxxgit stash pop
Is the standard procedure not working?
git stash savegit branch xxx HEADgit checkout xxxgit stash popShorter:
git stashgit checkout -b xxxgit stash pop