github commit stashed commits on different 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 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}