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

17 lines
242 B
Markdown

---
title: Apply the latest stash
tags: stash,repository,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
```