From: Nguyễn Thái Ngọc Duy Date: Sat, 27 Oct 2018 06:23:42 +0000 (+0200) Subject: config.txt: move tag.* to a separate file X-Git-Tag: v2.20.0-rc0~59^2~9 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/fb4c06fa4cf8f36a8c082d0da2acb30f8136c480 config.txt: move tag.* to a separate file Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/Documentation/config.txt b/Documentation/config.txt index 966e82e851..1db9c58e8d 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -419,22 +419,7 @@ include::config/stash.txt[] include::config/submodule.txt[] -tag.forceSignAnnotated:: - A boolean to specify whether annotated tags created should be GPG signed. - If `--annotate` is specified on the command line, it takes - precedence over this option. - -tag.sort:: - This variable controls the sort ordering of tags when displayed by - linkgit:git-tag[1]. Without the "--sort=" option provided, the - value of this variable will be used as the default. - -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]. +include::config/tag.txt[] transfer.fsckObjects:: When `fetch.fsckObjects` or `receive.fsckObjects` are diff --git a/Documentation/config/tag.txt b/Documentation/config/tag.txt new file mode 100644 index 0000000000..663663bdec --- /dev/null +++ b/Documentation/config/tag.txt @@ -0,0 +1,16 @@ +tag.forceSignAnnotated:: + A boolean to specify whether annotated tags created should be GPG signed. + If `--annotate` is specified on the command line, it takes + precedence over this option. + +tag.sort:: + This variable controls the sort ordering of tags when displayed by + linkgit:git-tag[1]. Without the "--sort=" option provided, the + value of this variable will be used as the default. + +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].