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

23 lines
319 B
Markdown

---
title: Delete all stashes
type: snippet
language: git
tags: [repository,stash]
author: chalarangelo
cover: little-tree
dateModified: 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
```