From: Junio C Hamano <gitster@pobox.com>
To: "陈建虎 via GitGitGadget" <gitgitgadget@gmail.com>,
"Justin Tobler" <jltobler@gmail.com>
Cc: git@vger.kernel.org, 陈建虎 <18230222379@163.com>,
陈建虎 <chenjianhu@kylinos.cn>
Subject: Re: [PATCH] modify the “foo" file path to "$PWD/bad-clone/sub/foo".
Date: Wed, 30 Jul 2025 08:47:16 -0700 [thread overview]
Message-ID: <xmqq5xf9n0jf.fsf@gitster.g> (raw)
In-Reply-To: <pull.2022.git.git.1753860300588.gitgitgadget@gmail.com> ("陈建虎 via GitGitGadget"'s message of "Wed, 30 Jul 2025 07:25:00 +0000")
"陈建虎 via GitGitGadget" <gitgitgadget@gmail.com> writes:
> From: =?UTF-8?q?=E9=99=88=E5=BB=BA=E8=99=8E?= <chenjianhu@kylinos.cn>
>
> In the t7450-bad-git-dotfiles.sh, when post-checkout
> is executed, the actual path where the foo file
> is created should be "$PWD/bad-clone/sub/foo".
"is created" is a bit iffy thing to say, as the test actually
expects the path _not_ to exist.
Also, pay special attention to what you say on your Subject: line.
Can I tell what area the change touches by only looking at the
Subject: line, especially when it is mixed with dozens of other
patch e-mails?
is the question any author of a patch e-mail should be asking.
$ git log --no-merges --format=%s -100 | sort
may give us some inspirations. For this one, perhaps I would have
written
Subject: t7450: inspect the correct path a broken code would write to
Prior to 05e9cd64 (config: quote values containing CR character,
2025-05-19), a repository can trick "clone --recurse-submodules"
into running a post-checkout hook shipped with the project. The
test was written to make sure the trick would no longer run the
hook with the fix in the commit.
However, the test did not check for the path the hook would
create; correct the path to the expected one if the bug were
still with us.
or something like that.
Justin, who wrote the test originally, Cc'ed for comments.
Thanks.
> diff --git a/t/t7450-bad-git-dotfiles.sh b/t/t7450-bad-git-dotfiles.sh
> index 14b5743b962..f512eed278c 100755
> --- a/t/t7450-bad-git-dotfiles.sh
> +++ b/t/t7450-bad-git-dotfiles.sh
> @@ -401,7 +401,7 @@ test_expect_success SYMLINKS,!WINDOWS,!MINGW 'submodule must not checkout into d
> git -C repo commit -m submodule &&
>
> git -c protocol.file.allow=always clone --recurse-submodules repo bad-clone &&
> - ! test -f "$PWD/foo" &&
> + ! test -f "$PWD/bad-clone/sub/foo" &&
> test -f $(printf "bad-clone/sub\r/post-checkout")
> '
next prev parent reply other threads:[~2025-07-30 15:47 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-30 7:25 [PATCH] modify the “foo" file path to "$PWD/bad-clone/sub/foo" 陈建虎 via GitGitGadget
2025-07-30 7:38 ` Kristoffer Haugsbakk
2025-07-30 15:09 ` Junio C Hamano
2025-07-30 15:47 ` Junio C Hamano [this message]
2025-07-30 18:08 ` Justin Tobler
2025-07-31 3:49 ` [PATCH v2] t7450: inspect the correct path a broken code would write to chenjianhu via GitGitGadget
2025-07-31 18:45 ` Junio C Hamano
2025-08-01 16:48 ` Justin Tobler
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=xmqq5xf9n0jf.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=18230222379@163.com \
--cc=chenjianhu@kylinos.cn \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=jltobler@gmail.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).