aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2018-12-23 14:24:35 -0500
committerJunio C Hamano <gitster@pobox.com>2018-12-28 13:27:11 -0800
commitb4583d55956544f936ba35893374e49a184bd7c9 (patch)
tree5932e95e01dd3a1d2cf8b2bfb69518c6a36cfc0e
parentconfig.txt: move worktree.* to a separate file (diff)
downloadgit-b4583d55956544f936ba35893374e49a184bd7c9.tar.gz
git-b4583d55956544f936ba35893374e49a184bd7c9.zip
doc/config: do a better job of introducing 'worktree.guessRemote'
The documentation for this option jumps right in with "With `add`", without explaining that `add` is a sub-command of "git worktree". Together with rather odd grammatical structure of the remainder of the sentence, the description can be difficult for newcomers to understand. Clarify by improving the grammar and mentioning "git worktree add" explicitly. Reported-by: Олег Самойлов <splarv@ya.ru> Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/config/worktree.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/config/worktree.txt b/Documentation/config/worktree.txt
index b853798fc2..048e349482 100644
--- a/Documentation/config/worktree.txt
+++ b/Documentation/config/worktree.txt
@@ -1,6 +1,6 @@
worktree.guessRemote::
- With `add`, if no branch argument, and neither of `-b` nor
- `-B` nor `--detach` are given, the command defaults to
+ If no branch is specified and neither `-b` nor `-B` nor
+ `--detach` is used, then `git worktree add` defaults to
creating a new branch from HEAD. If `worktree.guessRemote` is
set to true, `worktree add` tries to find a remote-tracking
branch whose name uniquely matches the new branch name. If