how to create branch in git stash code example
Example: how to create branch in git stash
git stash branch stash@{1}
// This command creates a new branch with the latest stash, and then deletes the latest stash ( like stash pop).
git stash branch stash@{1}
// This command creates a new branch with the latest stash, and then deletes the latest stash ( like stash pop).