--- title: Apply a stash tags: stash,repository,intermediate --- Applies a specific stash. - Use `git stash apply ` to apply the given ``. ```sh git stash apply ``` ```sh git stash apply stash@{1} # Applies `stash@{1}` ```