At Fri, 23 Oct 2020 10:01:14 +0800, Andy Fan <zhihui.fan1...@gmail.com> wrote 
in 
> On Fri, Oct 23, 2020 at 9:58 AM Thomas Munro <thomas.mu...@gmail.com> wrote:
> 
> > > Try this:
> > >
> > > git remote add cfbot https://github.com/postgresql-cfbot/postgresql.git
> > > git fetch cfbot commitfest/30/2785
> > > git checkout commitfest/30/2785
> >
> > Also, you might like this way of grabbing and applying all the patches
> > from an archives link and applying them:
> >
> > $ cat ~/bin/fetch-all-patches.sh
> > #!/bin/sh
> > for P in ` curl -s $1 | grep "\.patch" | sed 's|^ *<a
> > href="|https://www.postgresql.org|;s|".*||' ` ; do
> >   echo $P
> >   curl -s -O $P
> > done
> > $ ~/bin/fetch-all-patches.sh
> > '
> > https://www.postgresql.org/message-id/20200718201532.gv23...@telsasoft.com
> > '
...
> 
> 
> This is exactly what I want and more than that.  Thank you Thomas!

That's awfully useful. Thanks for sharing!

regards.

-- 
Kyotaro Horiguchi
NTT Open Source Software Center


Reply via email to