can you git stash pull from any branch code example
Example 1: how to stash changes and use in another brunch
git stash
git checkout -b xxx
git stash pop
Example 2: git stash contnet
git stash show -p stash@{1}
git stash
git checkout -b xxx
git stash pop
git stash show -p stash@{1}