From 4d80ebdc16bdc97a88ffe1b186811e2e553c4843 Mon Sep 17 00:00:00 2001 From: Eliot Sykes Date: Sat, 4 Feb 2017 10:37:09 +0000 Subject: [PATCH] Typo fix. Simplify git exclude path. --- pages/common/git-clean.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/git-clean.md b/pages/common/git-clean.md index a90289b34..42a246bef 100644 --- a/pages/common/git-clean.md +++ b/pages/common/git-clean.md @@ -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`