Update cheatsheets

This commit is contained in:
ivuorinen
2024-09-04 00:16:06 +00:00
parent 6d3dd67e22
commit e2776841ad
21 changed files with 47 additions and 47 deletions

View File

@@ -12,9 +12,9 @@ source: https://github.com/tldr-pages/tldr.git
`git clean`
- [i]nteractively delete untracked files:
- Interactively delete untracked files:
`git clean {{--interactive|-i}}`
`git clean {{-i|--interactive}}`
- Show which files would be deleted without actually deleting them:
@@ -22,11 +22,11 @@ source: https://github.com/tldr-pages/tldr.git
- Forcefully delete untracked files:
`git clean {{--force|-f}}`
`git clean {{-f|--force}}`
- Forcefully delete untracked [d]irectories:
`git clean {{--force|-f}} -d`
`git clean {{-f|--force}} -d`
- Delete untracked files, including e[x]cluded files (files ignored in `.gitignore` and `.git/info/exclude`):