]> git.ipfire.org Git - thirdparty/git.git/commitdiff
separate tar.* config to its own source file
authorJunio C Hamano <gitster@pobox.com>
Wed, 18 Mar 2020 18:26:00 +0000 (11:26 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 18 Mar 2020 19:42:09 +0000 (12:42 -0700)
Even though there is only one configuration variable in the
namespace, it is not quite right to have tar.umask described
among the variables for tag.* namespace.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/config/tag.txt
Documentation/config/tar.txt [new file with mode: 0644]

index 83e7bba8729627d3e329f8a1934ecf46fb30ff1f..eb1f44cd9a07de842c5a71e8f57684f752a2e62b 100644 (file)
@@ -445,6 +445,8 @@ include::config/submodule.txt[]
 
 include::config/tag.txt[]
 
+include::config/tar.txt[]
+
 include::config/trace2.txt[]
 
 include::config/transfer.txt[]
index 6d9110d84ce74f4de5782e9fcd5531719ed4627a..5062a057ffc6f59ed59fd87cdd3bd2ee98560b16 100644 (file)
@@ -15,10 +15,3 @@ tag.gpgSign::
        convenient to use an agent to avoid typing your gpg passphrase
        several times. Note that this option doesn't affect tag signing
        behavior enabled by "-u <keyid>" or "--local-user=<keyid>" options.
-
-tar.umask::
-       This variable can be used to restrict the permission bits of
-       tar archive entries.  The default is 0002, which turns off the
-       world write bit.  The special value "user" indicates that the
-       archiving user's umask will be used instead.  See umask(2) and
-       linkgit:git-archive[1].
diff --git a/Documentation/config/tar.txt b/Documentation/config/tar.txt
new file mode 100644 (file)
index 0000000..de8ff48
--- /dev/null
@@ -0,0 +1,6 @@
+tar.umask::
+       This variable can be used to restrict the permission bits of
+       tar archive entries.  The default is 0002, which turns off the
+       world write bit.  The special value "user" indicates that the
+       archiving user's umask will be used instead.  See umask(2) and
+       linkgit:git-archive[1].