Files
30-seconds-of-code/snippets/list-stashes.md
Angelos Chalaris 1397bb792e Deprecate expertise
2022-12-04 22:23:55 +02:00

22 lines
394 B
Markdown

---
title: Lists all stashes
tags: repository,stash
author: chalarangelo
cover: blog_images/golden-gate-bridge.jpg
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
```