Files
30-seconds-of-code/snippets/git/s/list-stashes.md
2023-05-07 16:07:29 +03:00

23 lines
372 B
Markdown

---
title: Lists all stashes
type: snippet
language: git
tags: [repository,stash]
author: chalarangelo
cover: golden-gate-bridge
dateModified: 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
```