diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-10-27 08:23:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-29 10:17:05 +0900 |
commit | 07c11a0bd0753dd625efc522b621ef5bc19ff06f (patch) | |
tree | e2a42565f41b520dbf82f2b3e54dbc0df417961b | |
parent | 25268ad5b1bd086016fcc7f6693c040972692381 (diff) | |
download | git-07c11a0bd0753dd625efc522b621ef5bc19ff06f.tar.gz |
config.txt: move web.* to a separate file
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/config.txt | 5 | ||||
-rw-r--r-- | Documentation/config/web.txt | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index eacaaa2deb..10617d0a10 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -433,10 +433,7 @@ include::config/user.txt[] include::config/versionsort.txt[] -web.browser:: - Specify a web browser that may be used by some commands. - Currently only linkgit:git-instaweb[1] and linkgit:git-help[1] - may use it. +include::config/web.txt[] worktree.guessRemote:: With `add`, if no branch argument, and neither of `-b` nor diff --git a/Documentation/config/web.txt b/Documentation/config/web.txt new file mode 100644 index 0000000000..beec8d1303 --- /dev/null +++ b/Documentation/config/web.txt @@ -0,0 +1,4 @@ +web.browser:: + Specify a web browser that may be used by some commands. + Currently only linkgit:git-instaweb[1] and linkgit:git-help[1] + may use it. |