20 lines
298 B
Markdown
20 lines
298 B
Markdown
---
|
|
title: Delete all stashes
|
|
tags: repository,stash,intermediate
|
|
firstSeen: 2021-04-13T19:36:57+03:00
|
|
lastUpdated: 2021-04-13T21:10:59+03:00
|
|
---
|
|
|
|
Deletes all stashes.
|
|
|
|
- Use `git stash clear` to delete all stashes.
|
|
|
|
```shell
|
|
git stash clear
|
|
```
|
|
|
|
```shell
|
|
git stash clear
|
|
# Deletes all stashes
|
|
```
|