diff options
author | Elijah Newren <newren@gmail.com> | 2019-09-17 18:35:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-17 21:20:35 +0200 |
commit | 3aca58045f4fa4ad25042f0850706b1d00fd77f1 (patch) | |
tree | 6325584c035fee81cdac2e886299d9af7fd0c09c /Documentation/git-clean.txt | |
parent | dir: add commentary explaining match_pathspec_item's return value (diff) | |
download | git-3aca58045f4fa4ad25042f0850706b1d00fd77f1.tar.xz git-3aca58045f4fa4ad25042f0850706b1d00fd77f1.zip |
git-clean.txt: do not claim we will delete files with -n/--dry-run
It appears that the wrong option got included in the list of what will
cause git-clean to actually take action. Correct the list.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-clean.txt')
-rw-r--r-- | Documentation/git-clean.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-clean.txt b/Documentation/git-clean.txt index db876f7dde..e84ffc9396 100644 --- a/Documentation/git-clean.txt +++ b/Documentation/git-clean.txt @@ -35,7 +35,7 @@ OPTIONS --force:: If the Git configuration variable clean.requireForce is not set to false, 'git clean' will refuse to delete files or directories - unless given -f, -n or -i. Git will refuse to delete directories + unless given -f or -i. Git will refuse to delete directories with .git sub directory or file unless a second -f is given. |