config.txt: move browser.* 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>
Nguyễn Thái Ngọc Duy committed
Oct 27, 2018 at 08:22 UTC
6b0b974060a2c06e82c9b8794182f93b0f0d4154
2 files changed
+10
-9
Documentation/config.txt
+1
-9
@@ -303,15 +303,7 @@ include::config/blame.txt[]
303
304
include::config/branch.txt[]
305
306
-browser.<tool>.cmd::
307
- Specify the command to invoke the specified browser. The
308
- specified command is evaluated in shell with the URLs passed
309
- as arguments. (See linkgit:git-web{litdd}browse[1].)
310
-
311
-browser.<tool>.path::
312
- Override the path for the given tool that may be used to
313
- browse HTML help (see `-w` option in linkgit:git-help[1]) or a
314
- working repository in gitweb (see linkgit:git-instaweb[1]).
306
+include::config/browser.txt[]
307
308
checkout.defaultRemote::
309
When you run 'git checkout <something>' and only have one
Documentation/config/browser.txt
new
+9
@@ -0,0 +1,9 @@
1
+browser.<tool>.cmd::
2
+ Specify the command to invoke the specified browser. The
3
+ specified command is evaluated in shell with the URLs passed
4
+ as arguments. (See linkgit:git-web{litdd}browse[1].)
5
+
6
+browser.<tool>.path::
7
+ Override the path for the given tool that may be used to
8
+ browse HTML help (see `-w` option in linkgit:git-help[1]) or a
9
+ working repository in gitweb (see linkgit:git-instaweb[1]).