Files
30-seconds-of-code/snippets/list-stashes.md
Isabelle Viktoria Maciohsek ed2f41b0d8 Bake dates into snippets
2021-06-13 19:47:48 +03:00

20 lines
344 B
Markdown

---
title: Lists all stashes
tags: repository,stash,intermediate
firstSeen: 2021-04-13T19:36:57+03:00
lastUpdated: 2021-04-13T21:10:59+03:00
---
Displays a list of all stashes.
- Use `git stash list` to view a list of all stashes.
```shell
git stash list
```
```shell
git stash list
# stash@{0}: WIP on patch-1: ee52eda Fix network bug
```