git does saved stash work on any branch code example
Example 1: git view stash
git stash show -p stash@{1}
Example 2: view git stash without applying
git stash show -p stash@{1}
Example 3: git stash example
git stash push -m "message" // use for code added in statsh
git stash list // use for check stash list
git stash apply stash@{index}