I started this a couple months back, moving a couple big config sections out of config.txt to make it more manageable. This series almost completes that. It moves all configs (except http.* which have changes on 'pu') out of config.txt. config.txt is now about the syntax, and a list of config sections. http section can be moved out later. I did a doc-diff on this series and the only change is ssh.variant is moved down a bit to keep it in order, which is intended. I thought of grouping all these config files in a separate directory Documentation/config to avoid cluttering Documentation/ too much but let's wait and see if people really find Documentation growing too large first. Nguyễn Thái Ngọc Duy (59): config.txt: move advice.* to a separate file config.txt: move core.* to a separate file config.txt: move add.* to a separate file config.txt: move alias.* to a separate file config.txt: move am.* to a separate file config.txt: move apply.* to a separate file config.txt: move blame.* to a separate file config.txt: move branch.* to a separate file config.txt: move browser.* to a separate file config.txt: move checkout.* to a separate file config.txt: move clean.* to a separate file config.txt: move color.* to a separate file config.txt: move column.* to a separate file config.txt: move commit.* to a separate file config.txt: move credential.* to a separate file config.txt: move completion.* to a separate file config.txt: move difftool.* to a separate file config.txt: move fastimport.* to a separate file config.txt: move filter.* to a separate file config.txt: move fsck.* to a separate file config.txt: move gc.* to a separate file config.txt: move gitweb.* to a separate file config.txt: move grep.* to a separate file config.txt: move gpg.* to a separate file config.txt: move guitool.* to a separate file config.txt: move help.* to a separate file config.txt: move ssh.* to a separate file config.txt: move i18n.* to a separate file config.txt: move i18n.* to a separate file config.txt: move init.* to a separate file config.txt: move instaweb.* to a separate file config.txt: move interactive.* to a separate file config.txt: move log.* to a separate file config.txt: move mailinfo.* to a separate file config.txt: move mailmap.* to a separate file config.txt: move man.* to a separate file config.txt: move mergetool.* to a separate file config.txt: move notes.* to a separate file config.txt: move pack.* to a separate file config.txt: move pager.* to a separate file config.txt: move pretty.* to a separate file config.txt: move protocol.* to a separate file config.txt: move remote.* to a separate file config.txt: move remotes.* to a separate file config.txt: move repack.* to a separate file config.txt: move rerere.* to a separate file config.txt: move sequencer.* to a separate file config.txt: move showBranch.* to a separate file config.txt: move splitIndex.* to a separate file config.txt: move status.* to a separate file config.txt: move tag.* to a separate file config.txt: move transfer.* to a separate file config.txt: move uploadarchive.* to a separate file config.txt: move uploadpack.* to a separate file config.txt: move url.* to a separate file config.txt: move user.* to a separate file config.txt: move versionsort.* to a separate file config.txt: move web.* to a separate file config.txt: move worktree.* to a separate file Documentation/add-config.txt | 7 + Documentation/advice-config.txt | 82 + Documentation/alias-config.txt | 18 + Documentation/am-config.txt | 14 + Documentation/apply-config.txt | 11 + Documentation/blame-config.txt | 21 + Documentation/branch-config.txt | 102 + Documentation/browser-config.txt | 9 + Documentation/checkout-config.txt | 23 + Documentation/clean-config.txt | 3 + Documentation/color-config.txt | 201 ++ Documentation/column-config.txt | 55 + Documentation/commit-config.txt | 29 + Documentation/completion-config.txt | 7 + Documentation/config.txt | 2640 +----------------------- Documentation/core-config.txt | 594 ++++++ Documentation/credential-config.txt | 26 + Documentation/difftool-config.txt | 14 + Documentation/fastimport-config.txt | 8 + Documentation/filter-config.txt | 9 + Documentation/fsck-config.txt | 67 + Documentation/gc-config.txt | 108 + Documentation/gitweb-config.txt | 16 + Documentation/gpg-config.txt | 20 + Documentation/grep-config.txt | 24 + Documentation/guitool-config.txt | 50 + Documentation/help-config.txt | 23 + Documentation/i18n-config.txt | 10 + Documentation/index-config.txt | 10 + Documentation/init-config.txt | 3 + Documentation/instaweb-config.txt | 20 + Documentation/interactive-config.txt | 16 + Documentation/log-config.txt | 43 + Documentation/mailinfo-config.txt | 6 + Documentation/mailmap-config.txt | 15 + Documentation/man-config.txt | 12 + Documentation/mergetool-config.txt | 53 + Documentation/notes-config.txt | 59 + Documentation/pack-config.txt | 120 ++ Documentation/pager-config.txt | 8 + Documentation/pretty-config.txt | 9 + Documentation/protocol-config.txt | 64 + Documentation/remote-config.txt | 78 + Documentation/remotes-config.txt | 3 + Documentation/repack-config.txt | 27 + Documentation/rerere-config.txt | 12 + Documentation/sequencer-config.txt | 5 + Documentation/showbranch-config.txt | 3 + Documentation/splitindex-config.txt | 24 + Documentation/ssh-config.txt | 35 + Documentation/stash-config.txt | 9 + Documentation/status-config.txt | 72 + Documentation/tag-config.txt | 16 + Documentation/transfer-config.txt | 71 + Documentation/uploadarchive-config.txt | 6 + Documentation/uploadpack-config.txt | 65 + Documentation/url-config.txt | 30 + Documentation/user-config.txt | 26 + Documentation/versionsort-config.txt | 33 + Documentation/web-config.txt | 4 + Documentation/worktree-config.txt | 9 + 61 files changed, 2608 insertions(+), 2549 deletions(-) create mode 100644 Documentation/add-config.txt create mode 100644 Documentation/advice-config.txt create mode 100644 Documentation/alias-config.txt create mode 100644 Documentation/am-config.txt create mode 100644 Documentation/apply-config.txt create mode 100644 Documentation/blame-config.txt create mode 100644 Documentation/branch-config.txt create mode 100644 Documentation/browser-config.txt create mode 100644 Documentation/checkout-config.txt create mode 100644 Documentation/clean-config.txt create mode 100644 Documentation/color-config.txt create mode 100644 Documentation/column-config.txt create mode 100644 Documentation/commit-config.txt create mode 100644 Documentation/completion-config.txt create mode 100644 Documentation/core-config.txt create mode 100644 Documentation/credential-config.txt create mode 100644 Documentation/difftool-config.txt create mode 100644 Documentation/fastimport-config.txt create mode 100644 Documentation/filter-config.txt create mode 100644 Documentation/fsck-config.txt create mode 100644 Documentation/gc-config.txt create mode 100644 Documentation/gitweb-config.txt create mode 100644 Documentation/gpg-config.txt create mode 100644 Documentation/grep-config.txt create mode 100644 Documentation/guitool-config.txt create mode 100644 Documentation/help-config.txt create mode 100644 Documentation/i18n-config.txt create mode 100644 Documentation/index-config.txt create mode 100644 Documentation/init-config.txt create mode 100644 Documentation/instaweb-config.txt create mode 100644 Documentation/interactive-config.txt create mode 100644 Documentation/log-config.txt create mode 100644 Documentation/mailinfo-config.txt create mode 100644 Documentation/mailmap-config.txt create mode 100644 Documentation/man-config.txt create mode 100644 Documentation/mergetool-config.txt create mode 100644 Documentation/notes-config.txt create mode 100644 Documentation/pack-config.txt create mode 100644 Documentation/pager-config.txt create mode 100644 Documentation/pretty-config.txt create mode 100644 Documentation/protocol-config.txt create mode 100644 Documentation/remote-config.txt create mode 100644 Documentation/remotes-config.txt create mode 100644 Documentation/repack-config.txt create mode 100644 Documentation/rerere-config.txt create mode 100644 Documentation/sequencer-config.txt create mode 100644 Documentation/showbranch-config.txt create mode 100644 Documentation/splitindex-config.txt create mode 100644 Documentation/ssh-config.txt create mode 100644 Documentation/stash-config.txt create mode 100644 Documentation/status-config.txt create mode 100644 Documentation/tag-config.txt create mode 100644 Documentation/transfer-config.txt create mode 100644 Documentation/uploadarchive-config.txt create mode 100644 Documentation/uploadpack-config.txt create mode 100644 Documentation/url-config.txt create mode 100644 Documentation/user-config.txt create mode 100644 Documentation/versionsort-config.txt create mode 100644 Documentation/web-config.txt create mode 100644 Documentation/worktree-config.txt -- 2.19.1.647.g708186aaf9