18 lines
216 B
Markdown
18 lines
216 B
Markdown
---
|
|
title: Delete all stashes
|
|
tags: repository,stash,intermediate
|
|
---
|
|
|
|
Deletes all stashes.
|
|
|
|
- Use `git stash clear` to delete all stashes.
|
|
|
|
```sh
|
|
git stash clear
|
|
```
|
|
|
|
```sh
|
|
git stash clear
|
|
# Deletes all stashes
|
|
```
|