git stash pop using branch code example
Example 1: git stash command with name
git stash save "my_stash"
Example 2: how to stash changes and use in another brunch
git stash
git checkout -b xxx
git stash pop
git stash save "my_stash"
git stash
git checkout -b xxx
git stash pop