Command
git stash apply
Explanation
git stash apply is used to apply stashed changes. It applies the stashed changes.
Examples
Apply last stash
git stash apply
Apply specific stash
git stash apply stash@{1}
git stash apply
git stash apply is used to apply stashed changes. It applies the stashed changes.
Apply last stash
git stash apply
Apply specific stash
git stash apply stash@{1}