config.txt: move sequencer.* to a separate file
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 27 Oct 2018 06:23:36 +0000 (08:23 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Oct 2018 01:17:04 +0000 (10:17 +0900)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/config/sequencer.txt [new file with mode: 0644]
index 1c2a6ec3c58131d75190f88a8d8d2b239aa04d08..ab504eaba2f378d0939b59d17f7e7062c2739b65 100644 (file)
@@ -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 (file)
index 0000000..b48d532
--- /dev/null
@@ -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.