18 lines
262 B
Markdown
18 lines
262 B
Markdown
---
|
|
title: Lists all stashes
|
|
tags: repository,stash,intermediate
|
|
---
|
|
|
|
Displays a list of all stashes.
|
|
|
|
- Use `git stash list` to view a list of all stashes.
|
|
|
|
```sh
|
|
git stash list
|
|
```
|
|
|
|
```sh
|
|
git stash list
|
|
# stash@{0}: WIP on patch-1: ee52eda Fix network bug
|
|
```
|