OSDN Git Service

Documentation: correctly spell git worktree --detach
authorbrian m. carlson <sandals@crustytoothpaste.net>
Wed, 22 Feb 2017 12:34:42 +0000 (12:34 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Feb 2017 18:08:38 +0000 (10:08 -0800)
The option is “--detach”, but we accidentally spelled it “--detached” at
one point in the man page.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Reported-by: Casey Rodarmor <casey@rodarmor.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-worktree.txt

index 332dd77..190e269 100644 (file)
@@ -51,7 +51,7 @@ Create `<path>` and checkout `<branch>` into it. The new working directory
 is linked to the current repository, sharing everything except working
 directory specific files such as HEAD, index, etc.
 +
-If `<branch>` is omitted and neither `-b` nor `-B` nor `--detached` used,
+If `<branch>` is omitted and neither `-b` nor `-B` nor `--detach` used,
 then, as a convenience, a new branch based at HEAD is created automatically,
 as if `-b $(basename <path>)` was specified.