2024-06-06 15:07:03

by Tetsuo Handa

[permalink] [raw]
Subject: [GIT PULL] tomoyo update for v6.10

The following changes since commit c6144a21169fe7d0d70f1a0dae6f6301e5918d30:

tomoyo: update project links (2024-06-03 22:43:11 +0900)

are available in the Git repository at:

git://git.code.sf.net/p/tomoyo/tomoyo.git

for you to fetch changes up to c6144a21169fe7d0d70f1a0dae6f6301e5918d30:

tomoyo: update project links (2024-06-03 22:43:11 +0900)

----------------------------------------------------------------
Single patch, no behavior changes.

Tetsuo Handa (1):
tomoyo: update project links

Documentation/admin-guide/LSM/tomoyo.rst | 35 +++++++++----------------------
MAINTAINERS | 2 -
security/tomoyo/Kconfig | 2 -
security/tomoyo/common.c | 2 -
4 files changed, 14 insertions(+), 27 deletions(-)


2024-06-06 16:51:38

by Linus Torvalds

[permalink] [raw]
Subject: Re: [GIT PULL] tomoyo update for v6.10

On Thu, 6 Jun 2024 at 07:40, Tetsuo Handa
<[email protected]> wrote:
>
> git://git.code.sf.net/p/tomoyo/tomoyo.git

Tssk, tssk. I want to see a proper pull request from a signed tag.

I did find the tag in your repo, so I pulled it, but please don't make
me have to go look for it.

Linus

2024-06-06 17:07:27

by pr-tracker-bot

[permalink] [raw]
Subject: Re: [GIT PULL] tomoyo update for v6.10

The pull request you sent on Thu, 6 Jun 2024 23:40:08 +0900:

> git://git.code.sf.net/p/tomoyo/tomoyo.git refs/heads/master

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/2faf6332c506fc3bd23815f8fe8f6d0c35271c17

Thank you!

--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

2024-06-06 22:13:37

by Tetsuo Handa

[permalink] [raw]
Subject: Re: [GIT PULL] tomoyo update for v6.10

On 2024/06/07 1:50, Linus Torvalds wrote:
> On Thu, 6 Jun 2024 at 07:40, Tetsuo Handa
> <[email protected]> wrote:
>>
>> git://git.code.sf.net/p/tomoyo/tomoyo.git
>
> Tssk, tssk. I want to see a proper pull request from a signed tag.
>
> I did find the tag in your repo, so I pulled it, but please don't make
> me have to go look for it.

Excuse me, but what did I miss?

I think I made the tag using "git tag -s tomoyo-pr-20240606".
What is "a proper pull request from a signed tag"?
(I'm wondering if this is caused by moving the repository...)


2024-06-06 22:22:30

by Linus Torvalds

[permalink] [raw]
Subject: Re: [GIT PULL] tomoyo update for v6.10

On Thu, 6 Jun 2024 at 15:13, Tetsuo Handa
<[email protected]> wrote:
>
> On 2024/06/07 1:50, Linus Torvalds wrote:
> > On Thu, 6 Jun 2024 at 07:40, Tetsuo Handa
> > <[email protected]> wrote:
> >>
> >> git://git.code.sf.net/p/tomoyo/tomoyo.git
> >
> > Tssk, tssk. I want to see a proper pull request from a signed tag.
> >
> > I did find the tag in your repo, so I pulled it, but please don't make
> > me have to go look for it.
>
> Excuse me, but what did I miss?

Note how it doesn't actually mention the tag-name anywhere.

> I think I made the tag using "git tag -s tomoyo-pr-20240606".
> What is "a proper pull request from a signed tag"?

Oh, the signed tag _existed_. And it was in the public repository. But
it wasn't actually ever mentioned in the pull-request itself, so I had
to find it by doing

git ls-remote git://git.code.sf.net/p/tomoyo/tomoyo | less

and then look for the tag that pointed to the commit ID that you mentioned.


Linus

2024-06-06 22:48:15

by Tetsuo Handa

[permalink] [raw]
Subject: Re: [GIT PULL] tomoyo update for v6.10

On 2024/06/07 7:22, Linus Torvalds wrote:
> On Thu, 6 Jun 2024 at 15:13, Tetsuo Handa
> <[email protected]> wrote:
>>
>> On 2024/06/07 1:50, Linus Torvalds wrote:
>>> On Thu, 6 Jun 2024 at 07:40, Tetsuo Handa
>>> <[email protected]> wrote:
>>>>
>>>> git://git.code.sf.net/p/tomoyo/tomoyo.git
>>>
>>> Tssk, tssk. I want to see a proper pull request from a signed tag.
>>>
>>> I did find the tag in your repo, so I pulled it, but please don't make
>>> me have to go look for it.
>>
>> Excuse me, but what did I miss?
>
> Note how it doesn't actually mention the tag-name anywhere.

Oops, I didn't notice that

git request-pull tomoyo-pr-20240606 git://git.code.sf.net/p/tomoyo/tomoyo.git

command does not include the tag name in the output. (Since I previously didn't
need to manually add the tag name, this seems to be caused by moving to the new
repository.)

That line should have been in the following format.

git://git.code.sf.net/p/tomoyo/tomoyo.git tags/$tagname

I'll add the tag name manually. Thank you for pointing this out.

>
>> I think I made the tag using "git tag -s tomoyo-pr-20240606".
>> What is "a proper pull request from a signed tag"?
>
> Oh, the signed tag _existed_. And it was in the public repository. But
> it wasn't actually ever mentioned in the pull-request itself, so I had
> to find it by doing
>
> git ls-remote git://git.code.sf.net/p/tomoyo/tomoyo | less
>
> and then look for the tag that pointed to the commit ID that you mentioned.
>
>
> Linus