Add stash snippets

This commit is contained in:
Chalarangelo
2021-04-13 19:36:57 +03:00
parent ee52eda14c
commit f589fe0fd0
6 changed files with 107 additions and 0 deletions

View File

@ -0,0 +1,17 @@
---
title: Delete all stashes
tags: stash,repository,intermediate
---
Deletes all stashes.
- Use `git stash clear` to delete all stashes.
```sh
git stash clear
```
```sh
git stash clear
# Deletes all stashes
```