stash changes git means code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: how to stash changes and use in another brunch
git stash
git checkout -b xxx
git stash pop
git stash apply "stash@{n}"
or
git stash apply n
git stash
git checkout -b xxx
git stash pop