1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 23:26:02 +02:00

Typo fix. Simplify git exclude path.

This commit is contained in:
Eliot Sykes 2017-02-04 10:37:09 +00:00 committed by Agniva De Sarker
parent 100320e3a6
commit 4d80ebdc16

View file

@ -14,10 +14,10 @@
`git clean --dry-run`
- Force delete files that are not tracked by git:
- Forcefully delete files that are not tracked by git:
`git clean -f`
- Delete untracked files, including ignored files in `.gitignore` and `$GIT_DIR/info/exclude`:
- Delete untracked files, including ignored files in `.gitignore` and `.git/info/exclude`:
`git clean -x`