--- title: Apply a stash tags: repository,stash expertise: intermediate author: chalarangelo firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- Applies a specific stash. - Use `git stash apply ` to apply the given ``. ```shell git stash apply ``` ```shell git stash apply stash@{1} # Applies `stash@{1}` ```