config.txt: move sequencer.* to a separate file
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Nguyễn Thái Ngọc Duy committed
Oct 27, 2018 at 08:23 UTC
c332419995557f14c1f9280edb9006471e17b27e
2 files changed
+6
-5
Documentation/config.txt
+1
-5
@@ -405,11 +405,7 @@ include::config/reset.txt[]
405
406
include::config/sendemail.txt[]
407
408
-sequence.editor::
409
- Text editor used by `git rebase -i` for editing the rebase instruction file.
410
- The value is meant to be interpreted by the shell when it is used.
411
- It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable.
412
- When not configured the default commit message editor is used instead.
408
+include::config/sequencer.txt[]
409
410
showBranch.default::
411
The default set of branches for linkgit:git-show-branch[1].
Documentation/config/sequencer.txt
new
+5
@@ -0,0 +1,5 @@
1
+sequence.editor::
2
+ Text editor used by `git rebase -i` for editing the rebase instruction file.
3
+ The value is meant to be interpreted by the shell when it is used.
4
+ It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable.
5
+ When not configured the default commit message editor is used instead.