From: "Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>
To: git@vger.kernel.org
Cc: "Junio C Hamano" <gitster@pobox.com>,
"Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>
Subject: [PATCH 00/59] Split config.txt
Date: Sat, 20 Oct 2018 14:37:49 +0200 [thread overview]
Message-ID: <20181020123848.2785-1-pclouds@gmail.com> (raw)
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
next reply other threads:[~2018-10-20 12:39 UTC|newest]
Thread overview: 67+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-20 12:37 Nguyễn Thái Ngọc Duy [this message]
2018-10-20 12:37 ` [PATCH 01/59] config.txt: move advice.* to a separate file Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 02/59] config.txt: move core.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 03/59] config.txt: move add.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 04/59] config.txt: move alias.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 05/59] config.txt: move am.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 06/59] config.txt: move apply.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 07/59] config.txt: move blame.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 08/59] config.txt: move branch.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 09/59] config.txt: move browser.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:37 ` [PATCH 10/59] config.txt: move checkout.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 11/59] config.txt: move clean.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 12/59] config.txt: move color.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 13/59] config.txt: move column.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 14/59] config.txt: move commit.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 15/59] config.txt: move credential.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 16/59] config.txt: move completion.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 17/59] config.txt: move difftool.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 18/59] config.txt: move fastimport.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 19/59] config.txt: move filter.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 20/59] config.txt: move fsck.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 21/59] config.txt: move gc.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 22/59] config.txt: move gitweb.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 23/59] config.txt: move grep.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 24/59] config.txt: move gpg.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 25/59] config.txt: move guitool.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 26/59] config.txt: move help.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 27/59] config.txt: move ssh.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 28/59] config.txt: move i18n.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 29/59] " Nguyễn Thái Ngọc Duy
2018-10-21 19:40 ` Andrei Rybak
2018-10-20 12:38 ` [PATCH 30/59] config.txt: move init.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 31/59] config.txt: move instaweb.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 32/59] config.txt: move interactive.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 33/59] config.txt: move log.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 34/59] config.txt: move mailinfo.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 35/59] config.txt: move mailmap.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 36/59] config.txt: move man.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 37/59] config.txt: move mergetool.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 38/59] config.txt: move notes.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 39/59] config.txt: move pack.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 40/59] config.txt: move pager.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 41/59] config.txt: move pretty.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 42/59] config.txt: move protocol.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 43/59] config.txt: move remote.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 44/59] config.txt: move remotes.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 45/59] config.txt: move repack.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 46/59] config.txt: move rerere.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 47/59] config.txt: move sequencer.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 48/59] config.txt: move showBranch.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 49/59] config.txt: move splitIndex.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 50/59] config.txt: move status.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 51/59] config.txt: move tag.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 52/59] config.txt: move transfer.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 53/59] config.txt: move uploadarchive.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 54/59] config.txt: move uploadpack.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 55/59] config.txt: move url.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 56/59] config.txt: move user.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 57/59] config.txt: move versionsort.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 58/59] config.txt: move web.* " Nguyễn Thái Ngọc Duy
2018-10-20 12:38 ` [PATCH 59/59] config.txt: move worktree.* " Nguyễn Thái Ngọc Duy
2018-10-20 19:25 ` [PATCH 00/59] Split config.txt Ævar Arnfjörð Bjarmason
2018-10-20 19:30 ` Duy Nguyen
2018-10-20 19:41 ` Ævar Arnfjörð Bjarmason
2018-10-20 23:29 ` Junio C Hamano
2018-10-22 14:42 ` Duy Nguyen
2018-10-22 19:22 ` Stefan Beller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181020123848.2785-1-pclouds@gmail.com \
--to=pclouds@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).