git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Saving patches from this list
@ 2008-12-12  7:27 Stefan Näwe
  2008-12-12  8:03 ` Johannes Sixt
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Näwe @ 2008-12-12  7:27 UTC (permalink / raw)
  To: git

I have some kind of a 'meta question' not exactly regarding git.

What's the best way to get patches sent to this list in a form suitable
for 'git am' without subscribing to this list ?


TIA
   Stefan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Saving patches from this list
  2008-12-12  7:27 Saving patches from this list Stefan Näwe
@ 2008-12-12  8:03 ` Johannes Sixt
  2008-12-12  8:28   ` Stefan Näwe
  0 siblings, 1 reply; 6+ messages in thread
From: Johannes Sixt @ 2008-12-12  8:03 UTC (permalink / raw)
  To: Stefan Näwe; +Cc: git

Stefan Näwe schrieb:
> What's the best way to get patches sent to this list in a form suitable
> for 'git am' without subscribing to this list ?

Subscribe to gmane.comp.version-control.git on news.gmane.org with your
favorite news reader and browse the list whenever you feel like it.

-- Hannes

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Saving patches from this list
  2008-12-12  8:03 ` Johannes Sixt
@ 2008-12-12  8:28   ` Stefan Näwe
  2008-12-12  9:07     ` Mike Ralphson
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Näwe @ 2008-12-12  8:28 UTC (permalink / raw)
  To: git

Johannes Sixt <j.sixt <at> viscovery.net> writes:

> 
> Stefan Näwe schrieb:
> > What's the best way to get patches sent to this list in a form suitable
> > for 'git am' without subscribing to this list ?
> 
> Subscribe to gmane.comp.version-control.git on news.gmane.org with your
> favorite news reader and browse the list whenever you feel like it.

Do you know how stubborn firewall administrators can be ?

IOW, that's unfortunately not an option for me.

Regards,
  Stefan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Saving patches from this list
  2008-12-12  8:28   ` Stefan Näwe
@ 2008-12-12  9:07     ` Mike Ralphson
  2008-12-12 15:14       ` Shawn O. Pearce
  0 siblings, 1 reply; 6+ messages in thread
From: Mike Ralphson @ 2008-12-12  9:07 UTC (permalink / raw)
  To: Stefan Näwe; +Cc: git, Johannes Sixt, Junio C Hamano

2008/12/12 Stefan Näwe <stefan.naewe+git@gmail.com>
>
> Johannes Sixt <j.sixt <at> viscovery.net> writes:
>
> >
> > Stefan Näwe schrieb:
> > > What's the best way to get patches sent to this list in a form suitable
> > > for 'git am' without subscribing to this list ?
> >
> > Subscribe to gmane.comp.version-control.git on news.gmane.org with your
> > favorite news reader and browse the list whenever you feel like it.
>
> Do you know how stubborn firewall administrators can be ?
>
> IOW, that's unfortunately not an option for me.

If it's only the occasional patch - (I see you're on gmail too), show
original and copy-and-paste into an editor with tabs set up
appropriately. Works for me.

Junio's blog[1] shows he's looking at patchwork. Personally I think it
would be fantastic to have a public patchwork server available. It
might avoid the chicken and egg problem in that it's currently easier
(for some people) to get hold of a patch to play with / review only
after it's accepted.

That said, I think including a link to a repo/branch from which the
current version of a patch series could be fetched would be an
amazingly useful addition to most [PATCH 0/n] cover-letters...

Mike

[1] http://gitster.livejournal.com/18696.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Saving patches from this list
  2008-12-12  9:07     ` Mike Ralphson
@ 2008-12-12 15:14       ` Shawn O. Pearce
  2008-12-13 13:28         ` Stefan Näwe
  0 siblings, 1 reply; 6+ messages in thread
From: Shawn O. Pearce @ 2008-12-12 15:14 UTC (permalink / raw)
  To: Mike Ralphson, Stefan Näwe; +Cc: git, Johannes Sixt, Junio C Hamano

Mike Ralphson <mike.ralphson@gmail.com> wrote:
> 2008/12/12 Stefan Näwe <stefan.naewe+git@gmail.com>
> > > Stefan Näwe schrieb:
> > > > What's the best way to get patches sent to this list in a form suitable
> > > > for 'git am' without subscribing to this list ?

If you find the article on the web with gmane, add '/raw' onto the
end of direct link URL.  E.g. to get:

  http://article.gmane.org/gmane.comp.version-control.git/102874

use:

  curl http://article.gmane.org/gmane.comp.version-control.git/102874/raw | git am 
 
> Junio's blog[1] shows he's looking at patchwork. Personally I think it
> would be fantastic to have a public patchwork server available. It
> might avoid the chicken and egg problem in that it's currently easier
> (for some people) to get hold of a patch to play with / review only
> after it's accepted.

One of the things I want to do with Gerrit 2 is teach it to read a
mailing list and convert patches it receives into temporary branches
that can be fetched over git://, and also create records in its web
database so reviews can be done on the web interface, then let it
CC the list back with a proper In-Reply-To when comments are posted
on the web to a change it received by email.

IOW, I want to make Gerrit 2 useful to the git community to monitor
patch state without changing our current email based workflow.
But I'm still a good two or three months from being able to do that.
Android's workflow is higher priority to me right now.

-- 
Shawn.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Saving patches from this list
  2008-12-12 15:14       ` Shawn O. Pearce
@ 2008-12-13 13:28         ` Stefan Näwe
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Näwe @ 2008-12-13 13:28 UTC (permalink / raw)
  To: git

Shawn O. Pearce <spearce <at> spearce.org> writes:

> > > > > What's the best way to get patches sent to this list in a form suitable
> > > > > for 'git am' without subscribing to this list ?
> 
> If you find the article on the web with gmane, add '/raw' onto the
> end of direct link URL.  E.g. to get:
> 
>   http://article.gmane.org/gmane.comp.version-control.git/102874
> 
> use:
> 
>   curl http://article.gmane.org/gmane.comp.version-control.git/102874/raw |
git am 

Now that was helpful!
Exactly what I was looking for!


Thanks,
Stefan

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-12-13 13:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-12  7:27 Saving patches from this list Stefan Näwe
2008-12-12  8:03 ` Johannes Sixt
2008-12-12  8:28   ` Stefan Näwe
2008-12-12  9:07     ` Mike Ralphson
2008-12-12 15:14       ` Shawn O. Pearce
2008-12-13 13:28         ` Stefan Näwe

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).