how to commit the stashed changes in git code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
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}
Example 3: git stash contnet
git stash show -p stash@{1}