From: Nguyễn Thái Ngọc Duy Date: Sat, 27 Oct 2018 06:23:36 +0000 (+0200) Subject: config.txt: move sequencer.* to a separate file X-Git-Tag: v2.20.0-rc0~59^2~15 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/c332419995557f14c1f9280edb9006471e17b27e config.txt: move sequencer.* 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 1c2a6ec3c5..ab504eaba2 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -405,11 +405,7 @@ include::config/reset.txt[] include::config/sendemail.txt[] -sequence.editor:: - Text editor used by `git rebase -i` for editing the rebase instruction file. - The value is meant to be interpreted by the shell when it is used. - It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable. - When not configured the default commit message editor is used instead. +include::config/sequencer.txt[] showBranch.default:: The default set of branches for linkgit:git-show-branch[1]. diff --git a/Documentation/config/sequencer.txt b/Documentation/config/sequencer.txt new file mode 100644 index 0000000000..b48d532a96 --- /dev/null +++ b/Documentation/config/sequencer.txt @@ -0,0 +1,5 @@ +sequence.editor:: + Text editor used by `git rebase -i` for editing the rebase instruction file. + The value is meant to be interpreted by the shell when it is used. + It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable. + When not configured the default commit message editor is used instead.