git how to stash local changes code example
Example 1: git view stash
git stash show -p stash@{1}
Example 2: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 3: git stash clean command
git stash clear
Example 4: 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}