git/stash-apply

Apply Stash

Apply stashed changes

git
stash
changes

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}