22 lines
349 B
Markdown
22 lines
349 B
Markdown
---
|
|
title: Apply the latest stash
|
|
type: snippet
|
|
language: git
|
|
tags: [repository,stash]
|
|
author: chalarangelo
|
|
cover: palm-tree-house
|
|
dateModified: 2021-04-13T21:10:59+03:00
|
|
---
|
|
|
|
Applies the latest stash.
|
|
|
|
- Use `git stash apply` to apply the latest stash.
|
|
|
|
```shell
|
|
git stash apply <stash>
|
|
```
|
|
|
|
```shell
|
|
git stash apply # Applies the latest stash
|
|
```
|