add git clean

This commit is contained in:
Niccolo Borgioli 2024-03-05 17:27:27 +01:00
parent eb63b57ad4
commit 0f172b5c61
No known key found for this signature in database
GPG Key ID: 4897ACD13A65977C
1 changed files with 17 additions and 0 deletions

17
pages/git/clean.md Normal file
View File

@ -0,0 +1,17 @@
---
tags:
- git
- clean
- gitignore
- delete
---
# Delete all files mentioned by `.gitignore`
This command is useful if you want to reset a repository to it's checked out state.
```bash
git clean -Xdf
```
[Original SO Link](https://unix.stackexchange.com/a/542735)