From: "Vít Ondruch" <vondruch@redhat.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: Is there a way to get the "format-patch" formatted file name?
Date: Fri, 1 Sep 2023 10:56:28 +0200 [thread overview]
Message-ID: <24e10903-29a0-497a-c8d8-b26c02de7336@redhat.com> (raw)
In-Reply-To: <xmqqo7inw2na.fsf@gitster.g>
[-- Attachment #1.1: Type: text/plain, Size: 2663 bytes --]
Dne 31. 08. 23 v 19:19 Junio C Hamano napsal(a):
> Vít Ondruch <vondruch@redhat.com> writes:
>
>> My typical use case is to download patches from GH, e.g.:
>>
>> ~~~
>>
>> $ curl -OL https://github.com/rails/sprockets/pull/791.patch
> ...
>> The problem with this is that I end up with the "791.patch" file,
>> while I'd like have a file with similar name as if I have used the git
>> command:
>>
>>
>> ~~~
>>
>> $ git format-patch -1 6554b6d
>> 0001-Fix-Minitest-constant-name-in-tests.patch
>>
>> ~~~
>>
>>
>> So I wonder, is there a way to get such file name?
> Do you mean: GitHub should let me run this command instead
>
> $ curl -OL https://github.com/rails/sprockets/pull/0001-Fix-Minitest-constant-name-in-tests.patch
>
> It may be nice for them to give a more meaningful name to their pull
> request (not just the output file name) than just an integer.
This URL would be hard to compile and it could potentially lead me to
the same question ;) But maybe in combination with `-J` option, GH (but
also all other forges) could probably do something about it.
> But
> that is not a question/request we can answer here (this is not a
> help forum for GitHub users).
Right.
>
> Something along the lines of
>
> sed -ne '/^Subject: /{
> s/^Subject: *\[PATCH[^]]*\] *//;
> s/[^a-zA-Z0-9]/-/g;
> s/--*/-/g;
> s/$/\.patch/;
> p;
> q;
> }' 791.patch
>
> should be doable, but I am not sure what the benefit is.
If this was provided as a some convenient script, then I would not need
to know what the sanitation of the subject is done to get the file name.
However, so far I was mostly fine with manually replacing spaces by
dashes, so what is sanitized is not really that important to me. I just
though that if Git has already some opinion about it and it is already
implemented, it would be nice to reuse the functionality.
> Once you
> get it in Git,
But I typically don't have a Git.
> you'd park it on a branch with a useful name and we
> can forget about "791", so the "The files we get from GitHub are
> named in a way that makes it hard to identify them" does not sound
> like a Git issue, at least to me.
>
>
>
It does not seems I have convinced you (and that is fine). I'll probably
look around. patchutils project could be probably good candidate for
such script. I'll try to ask there. Maybe I'll also try to explore if GH
would be open to provide some better filename, leveraging the `-J` curl
option.
Thx for you help! Appreciate that.
Vít
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
next prev parent reply other threads:[~2023-09-01 8:57 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-31 9:49 Is there a way to get the "format-patch" formatted file name? Vít Ondruch
2023-08-31 11:04 ` Oswald Buddenhagen
2023-08-31 12:13 ` Vít Ondruch
2023-08-31 12:46 ` Oswald Buddenhagen
2023-08-31 17:19 ` Junio C Hamano
2023-09-01 8:56 ` Vít Ondruch [this message]
2023-09-01 11:00 ` Oswald Buddenhagen
2023-09-01 15:53 ` Junio C Hamano
2023-09-01 16:04 ` Junio C Hamano
2023-09-01 16:37 ` Vít Ondruch
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=24e10903-29a0-497a-c8d8-b26c02de7336@redhat.com \
--to=vondruch@redhat.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).