From: Brandon Williams <bmwill@google.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, sbeller@google.com, jrnieder@gmail.com,
Jens.Lehmann@web.de
Subject: Re: [PATCH v2 10/15] diff: stop allowing diff to have submodules configured in .git/config
Date: Fri, 4 Aug 2017 14:59:56 -0700 [thread overview]
Message-ID: <20170804215956.GC126093@google.com> (raw)
In-Reply-To: <xmqqlgn0wfjt.fsf@gitster.mtv.corp.google.com>
On 08/03, Junio C Hamano wrote:
> Brandon Williams <bmwill@google.com> writes:
>
> > Traditionally a submodule is comprised of a gitlink as well as a
> > corresponding entry in the .gitmodules file. Diff doesn't follow this
> > paradigm as its config callback routine falls back to populating the
> > submodule-config if a config entry starts with 'submodule.'.
> >
> > Remove this behavior in order to be consistent with how the
> > submodule-config is populated, via calling 'gitmodules_config()' or
> > 'repo_read_gitmodules()'.
>
> I am all for dropping special cases deep in the diff machinery, even
> though there may be submodule users who care about submodule.*.ignore
>
> Does this change mean we can eventually get rid of the ugly
> DIFF_OPT_OVERRIDE_SUBMODULE_CONFIG hack and also need for a patch
> like 03/15?
I think that this is a step toward getting rid of that. We can either
do two things: 1) deprecate submodule.*.ignore and don't respect it
anymore or 2) flip the polarity of that flag so that by default we
don't respect the submodule.*.ignore config and instead callers must opt
in instead of the current opt out behavior.
>
> >
> > Signed-off-by: Brandon Williams <bmwill@google.com>
> > ---
> > diff.c | 3 ---
> > t/t4027-diff-submodule.sh | 67 -----------------------------------------------
> > 2 files changed, 70 deletions(-)
> >
> > diff --git a/diff.c b/diff.c
> > index 85e714f6c..e43519b88 100644
> > --- a/diff.c
> > +++ b/diff.c
> > @@ -346,9 +346,6 @@ int git_diff_basic_config(const char *var, const char *value, void *cb)
> > return 0;
> > }
> >
> > - if (starts_with(var, "submodule."))
> > - return parse_submodule_config_option(var, value);
> > -
> > if (git_diff_heuristic_config(var, value, cb) < 0)
> > return -1;
> >
> > diff --git a/t/t4027-diff-submodule.sh b/t/t4027-diff-submodule.sh
> > index 518bf9524..2ffd11a14 100755
> > --- a/t/t4027-diff-submodule.sh
> > +++ b/t/t4027-diff-submodule.sh
> > @@ -113,35 +113,6 @@ test_expect_success 'git diff HEAD with dirty submodule (work tree, refs match)'
> > ! test -s actual4
> > '
> >
> > -test_expect_success 'git diff HEAD with dirty submodule (work tree, refs match) [.git/config]' '
> > - git config diff.ignoreSubmodules all &&
> > - git diff HEAD >actual &&
> > - ! test -s actual &&
> > - git config submodule.subname.ignore none &&
> > - git config submodule.subname.path sub &&
> > - git diff HEAD >actual &&
> > - sed -e "1,/^@@/d" actual >actual.body &&
> > - expect_from_to >expect.body $subprev $subprev-dirty &&
> > - test_cmp expect.body actual.body &&
> > - git config submodule.subname.ignore all &&
> > - git diff HEAD >actual2 &&
> > - ! test -s actual2 &&
> > - git config submodule.subname.ignore untracked &&
> > - git diff HEAD >actual3 &&
> > - sed -e "1,/^@@/d" actual3 >actual3.body &&
> > - expect_from_to >expect.body $subprev $subprev-dirty &&
> > - test_cmp expect.body actual3.body &&
> > - git config submodule.subname.ignore dirty &&
> > - git diff HEAD >actual4 &&
> > - ! test -s actual4 &&
> > - git diff HEAD --ignore-submodules=none >actual &&
> > - sed -e "1,/^@@/d" actual >actual.body &&
> > - expect_from_to >expect.body $subprev $subprev-dirty &&
> > - test_cmp expect.body actual.body &&
> > - git config --remove-section submodule.subname &&
> > - git config --unset diff.ignoreSubmodules
> > -'
> > -
> > test_expect_success 'git diff HEAD with dirty submodule (work tree, refs match) [.gitmodules]' '
> > git config diff.ignoreSubmodules dirty &&
> > git diff HEAD >actual &&
> > @@ -208,24 +179,6 @@ test_expect_success 'git diff HEAD with dirty submodule (untracked, refs match)'
> > ! test -s actual4
> > '
> >
> > -test_expect_success 'git diff HEAD with dirty submodule (untracked, refs match) [.git/config]' '
> > - git config submodule.subname.ignore all &&
> > - git config submodule.subname.path sub &&
> > - git diff HEAD >actual2 &&
> > - ! test -s actual2 &&
> > - git config submodule.subname.ignore untracked &&
> > - git diff HEAD >actual3 &&
> > - ! test -s actual3 &&
> > - git config submodule.subname.ignore dirty &&
> > - git diff HEAD >actual4 &&
> > - ! test -s actual4 &&
> > - git diff --ignore-submodules=none HEAD >actual &&
> > - sed -e "1,/^@@/d" actual >actual.body &&
> > - expect_from_to >expect.body $subprev $subprev-dirty &&
> > - test_cmp expect.body actual.body &&
> > - git config --remove-section submodule.subname
> > -'
> > -
> > test_expect_success 'git diff HEAD with dirty submodule (untracked, refs match) [.gitmodules]' '
> > git config --add -f .gitmodules submodule.subname.ignore all &&
> > git config --add -f .gitmodules submodule.subname.path sub &&
> > @@ -261,26 +214,6 @@ test_expect_success 'git diff between submodule commits' '
> > ! test -s actual
> > '
> >
> > -test_expect_success 'git diff between submodule commits [.git/config]' '
> > - git diff HEAD^..HEAD >actual &&
> > - sed -e "1,/^@@/d" actual >actual.body &&
> > - expect_from_to >expect.body $subtip $subprev &&
> > - test_cmp expect.body actual.body &&
> > - git config submodule.subname.ignore dirty &&
> > - git config submodule.subname.path sub &&
> > - git diff HEAD^..HEAD >actual &&
> > - sed -e "1,/^@@/d" actual >actual.body &&
> > - expect_from_to >expect.body $subtip $subprev &&
> > - test_cmp expect.body actual.body &&
> > - git config submodule.subname.ignore all &&
> > - git diff HEAD^..HEAD >actual &&
> > - ! test -s actual &&
> > - git diff --ignore-submodules=dirty HEAD^..HEAD >actual &&
> > - sed -e "1,/^@@/d" actual >actual.body &&
> > - expect_from_to >expect.body $subtip $subprev &&
> > - git config --remove-section submodule.subname
> > -'
> > -
> > test_expect_success 'git diff between submodule commits [.gitmodules]' '
> > git diff HEAD^..HEAD >actual &&
> > sed -e "1,/^@@/d" actual >actual.body &&
--
Brandon Williams
next prev parent reply other threads:[~2017-08-04 22:00 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-25 21:39 [PATCH 00/15] submodule-config cleanup Brandon Williams
2017-07-25 21:39 ` [PATCH 01/15] t7411: check configuration parsing errors Brandon Williams
2017-07-26 20:56 ` Junio C Hamano
2017-07-25 21:39 ` [PATCH 02/15] submodule: don't use submodule_from_name Brandon Williams
2017-07-25 23:17 ` Stefan Beller
2017-07-26 21:06 ` Junio C Hamano
2017-07-30 13:43 ` Jens Lehmann
2017-07-30 21:25 ` Junio C Hamano
2017-07-31 20:43 ` Stefan Beller
2017-08-11 16:53 ` Heiko Voigt
2017-07-25 21:39 ` [PATCH 03/15] add, reset: ensure submodules can be added or reset Brandon Williams
2017-07-25 23:33 ` Stefan Beller
2017-07-25 23:37 ` Brandon Williams
2017-07-26 21:25 ` Junio C Hamano
2017-07-31 20:50 ` Brandon Williams
2017-07-25 21:39 ` [PATCH 04/15] submodule--helper: don't overlay config in remote_submodule_branch Brandon Williams
2017-07-25 23:35 ` Stefan Beller
2017-07-25 21:39 ` [PATCH 05/15] submodule--helper: don't overlay config in update-clone Brandon Williams
2017-07-25 23:37 ` Stefan Beller
2017-07-25 23:39 ` Brandon Williams
2017-07-25 21:39 ` [PATCH 06/15] fetch: don't overlay config with submodule-config Brandon Williams
2017-07-25 23:44 ` Stefan Beller
2017-07-25 23:48 ` Brandon Williams
2017-07-25 21:39 ` [PATCH 07/15] submodule: don't rely on overlayed config when setting diffopts Brandon Williams
2017-07-25 23:46 ` Stefan Beller
2017-07-25 21:39 ` [PATCH 08/15] unpack-trees: don't rely on overlayed config Brandon Williams
2017-07-25 21:39 ` [PATCH 09/15] submodule: remove submodule_config callback routine Brandon Williams
2017-07-26 21:31 ` Junio C Hamano
2017-07-25 21:39 ` [PATCH 10/15] diff: stop allowing diff to have submodules configured in .git/config Brandon Williams
2017-07-25 21:39 ` [PATCH 11/15] submodule-config: remove support for overlaying repository config Brandon Williams
2017-07-25 21:39 ` [PATCH 12/15] submodule-config: move submodule-config functions to submodule-config.c Brandon Williams
2017-07-25 21:39 ` [PATCH 13/15] submodule-config: lazy-load a repository's .gitmodules file Brandon Williams
2017-07-25 21:39 ` [PATCH 14/15] unpack-trees: improve loading of .gitmodules Brandon Williams
2017-07-25 21:39 ` [PATCH 15/15] submodule: remove gitmodules_config Brandon Williams
2017-08-03 18:19 ` [PATCH v2 00/15] submodule-config cleanup Brandon Williams
2017-08-03 18:19 ` [PATCH v2 01/15] t7411: check configuration parsing errors Brandon Williams
2017-08-03 18:19 ` [PATCH v2 02/15] submodule: don't use submodule_from_name Brandon Williams
2017-08-03 18:57 ` Stefan Beller
2017-08-04 21:53 ` Brandon Williams
2017-08-11 16:59 ` Heiko Voigt
2017-08-03 20:17 ` Junio C Hamano
2017-08-03 18:19 ` [PATCH v2 03/15] add, reset: ensure submodules can be added or reset Brandon Williams
2017-08-03 18:19 ` [PATCH v2 04/15] submodule--helper: don't overlay config in remote_submodule_branch Brandon Williams
2017-08-03 18:19 ` [PATCH v2 05/15] submodule--helper: don't overlay config in update-clone Brandon Williams
2017-08-03 18:19 ` [PATCH v2 06/15] fetch: don't overlay config with submodule-config Brandon Williams
2017-08-03 18:19 ` [PATCH v2 07/15] submodule: don't rely on overlayed config when setting diffopts Brandon Williams
2017-08-03 18:19 ` [PATCH v2 08/15] unpack-trees: don't respect submodule.update Brandon Williams
2017-08-03 20:26 ` Stefan Beller
2017-08-03 20:37 ` Junio C Hamano
2017-08-03 20:43 ` Stefan Beller
2017-08-03 18:19 ` [PATCH v2 09/15] submodule: remove submodule_config callback routine Brandon Williams
2017-08-03 18:19 ` [PATCH v2 10/15] diff: stop allowing diff to have submodules configured in .git/config Brandon Williams
2017-08-03 20:40 ` Junio C Hamano
2017-08-04 21:59 ` Brandon Williams [this message]
2017-08-03 18:19 ` [PATCH v2 11/15] submodule-config: remove support for overlaying repository config Brandon Williams
2017-08-03 18:19 ` [PATCH v2 12/15] submodule-config: move submodule-config functions to submodule-config.c Brandon Williams
2017-08-03 18:19 ` [PATCH v2 13/15] submodule-config: lazy-load a repository's .gitmodules file Brandon Williams
2017-08-03 18:19 ` [PATCH v2 14/15] unpack-trees: improve loading of .gitmodules Brandon Williams
2017-08-11 17:18 ` Heiko Voigt
2017-08-03 18:20 ` [PATCH v2 15/15] submodule: remove gitmodules_config Brandon Williams
2017-08-03 20:09 ` [PATCH v2 00/15] submodule-config cleanup Junio C Hamano
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=20170804215956.GC126093@google.com \
--to=bmwill@google.com \
--cc=Jens.Lehmann@web.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jrnieder@gmail.com \
--cc=sbeller@google.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.