From: Patrick Steinhardt <ps@pks.im>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, Heghedus Razvan <heghedus.razvan@protonmail.com>
Subject: Re: [PATCH v2] setup: fix bug with "includeIf.onbranch" when initializing dir
Date: Thu, 23 May 2024 07:26:12 +0200 [thread overview]
Message-ID: <Zk7TdDRFAuwQMBHy@tanuki> (raw)
In-Reply-To: <xmqqwmnlz7bf.fsf_-_@gitster.g>
[-- Attachment #1: Type: text/plain, Size: 2269 bytes --]
On Wed, May 22, 2024 at 05:43:32PM -0700, Junio C Hamano wrote:
[snip]
> diff --git a/setup.c b/setup.c
> index b69b1cbc2a..c6fffa0164 100644
> --- a/setup.c
> +++ b/setup.c
> @@ -2224,6 +2213,21 @@ int init_db(const char *git_dir, const char *real_git_dir,
> repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
> repo_set_ref_storage_format(the_repository, repo_fmt.ref_storage_format);
>
> + /*
> + * Ensure `core.hidedotfiles` is processed. This must happen after we
> + * have set up the repository format such that we can evaluate
> + * includeIf conditions correctly in the case of re-initialization.
> + */
> + git_config(platform_core_config, NULL);
> +
> + safe_create_dir(git_dir, 0);
> +
> + prev_bare_repository = is_bare_repository();
Okay, `prev_bare_repository` is another difference between v2.44 and
master.
> + reinit = create_default_files(template_dir, original_git_dir,
> + &repo_fmt, prev_bare_repository,
> + init_shared_repository);
> +
> if (!(flags & INIT_DB_SKIP_REFDB))
> create_reference_database(repo_fmt.ref_storage_format,
> initial_branch, flags & INIT_DB_QUIET);
> diff --git a/t/t0001-init.sh b/t/t0001-init.sh
> index b131d665db..319ed81631 100755
> --- a/t/t0001-init.sh
> +++ b/t/t0001-init.sh
> @@ -584,14 +584,39 @@ test_expect_success 'init with --ref-format=files' '
> test_cmp expect actual
> '
>
> -test_expect_success 're-init with same format' '
> - test_when_finished "rm -rf refformat" &&
> - git init --ref-format=files refformat &&
> - git init --ref-format=files refformat &&
> - echo files >expect &&
> - git -C refformat rev-parse --show-ref-format >actual &&
> - test_cmp expect actual
> -'
> +backends="files"
> +for from_format in $backends
> +do
> + test_expect_success "re-init with same format ($from_format)" '
> + test_when_finished "rm -rf refformat" &&
> + git init --ref-format=$from_format refformat &&
> + git init --ref-format=$from_format refformat &&
> + echo $from_format >expect &&
> + git -C refformat rev-parse --show-ref-format >actual &&
> + test_cmp expect actual
> + '
And this here is the change to the test setup, which makes sense.
Looks sensible, thanks!
Patrick
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
prev parent reply other threads:[~2024-05-23 5:26 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-21 7:54 git init BUG when gitconfig has includeIf Heghedus Razvan
2024-05-21 16:36 ` Junio C Hamano
2024-05-21 16:46 ` Heghedus Razvan
2024-05-22 8:06 ` Patrick Steinhardt
2024-05-22 8:21 ` Heghedus Razvan
2024-05-22 8:27 ` Patrick Steinhardt
2024-05-22 10:38 ` [PATCH] setup: fix bug with "includeIf.onbranch" when initializing dir Patrick Steinhardt
2024-05-22 10:58 ` Heghedus Razvan
2024-05-22 19:06 ` Junio C Hamano
2024-05-23 0:41 ` Junio C Hamano
2024-05-23 5:26 ` Patrick Steinhardt
2024-05-23 0:43 ` [PATCH v2] " Junio C Hamano
2024-05-23 0:56 ` [rPATCH " Junio C Hamano
2024-05-23 5:26 ` Patrick Steinhardt [this message]
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=Zk7TdDRFAuwQMBHy@tanuki \
--to=ps@pks.im \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=heghedus.razvan@protonmail.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.