Skip to content

Commit

Permalink
separate tar.* config to its own source file
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
gitster committed Mar 18, 2020
1 parent 0822e66 commit 8312aa7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Documentation/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,8 @@ include::config/submodule.txt[]

include::config/tag.txt[]

include::config/tar.txt[]

include::config/trace2.txt[]

include::config/transfer.txt[]
Expand Down
7 changes: 0 additions & 7 deletions Documentation/config/tag.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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].
6 changes: 6 additions & 0 deletions Documentation/config/tar.txt
Original file line number Diff line number Diff line change
@@ -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].

0 comments on commit 8312aa7

Please sign in to comment.