17 lines
242 B
Markdown
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
|
|
```
|