Files
30-seconds-of-code/snippets/apply-latest-stash.md
2021-04-13 19:45:31 +03:00

17 lines
242 B
Markdown

---
title: Apply the latest stash
tags: repository,stash,intermediate
---
Applies the latest stash.
- Use `git stash apply` to apply the latest stash.
```sh
git stash apply <stash>
```
```sh
git stash apply # Applies the latest stash
```