From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: "Shawn O. Pearce" <spearce@spearce.org>
Cc: gitster@pobox.com, Daniel Barkalow <barkalow@iabervon.org>,
git@vger.kernel.org
Subject: Re: [PATCH 2/2] fetch/push: readd rsync support
Date: Fri, 28 Sep 2007 13:22:09 +0100 (BST) [thread overview]
Message-ID: <Pine.LNX.4.64.0709281317170.28395@racer.site> (raw)
In-Reply-To: <20070928052018.GW3099@spearce.org>
Hi,
On Fri, 28 Sep 2007, Shawn O. Pearce wrote:
> Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> > +static int disconnect_rsync(struct transport *transport)
> > +{
> > + return 0;
> > +}
> >
> > /* Generic functions for using commit walkers */
> >
> > @@ -402,7 +730,10 @@ struct transport *transport_get(struct remote *remote, const char *url)
> > ret->url = url;
> >
> > if (!prefixcmp(url, "rsync://")) {
> > - /* not supported; don't populate any ops */
> > + ret->get_refs_list = get_refs_via_rsync;
> > + ret->fetch = fetch_objs_via_rsync;
> > + ret->push = rsync_transport_push;
> > + ret->disconnect = disconnect_rsync;
> >
> > } else if (!prefixcmp(url, "http://")
> > || !prefixcmp(url, "https://")
>
> For what it's worth disconnect is an optional operation.
Strange. When not assigning disconnect, I had an error last night. But
it could well be something independent.
Reading the code again, I should not even have to assign NULL to
ret->disconnect.
Will fix.
> I see push is now supported again. Didn't we remove rsync push support
> a long time ago? Like say in:
>
> commit c485104741ccdf32dd0c96fcb886c38a0b5badbd
> Author: c.shoemaker@cox.net <c.shoemaker@cox.net>
> Date: Sat Oct 29 00:16:33 2005 -0400
>
> Add usage help to git-push.sh
>
> Also clarify failure to push to read-only remote. Especially,
> state why rsync:// is not used for pushing.
>
> [jc: ideally rsync should not be used for anything]
>
> Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net>
> Signed-off-by: Junio C Hamano <junkio@cox.net>
I know. I hesitated, but then: it was all too easy to have it in, so why
should we relinquish it?
> I guess it is nice to see that you can't kill rsync. Like Windows it
> always finds it way back into your life.
Hehe.
Ciao,
Dscho
next prev parent reply other threads:[~2007-09-28 12:23 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-28 5:06 [PATCH 0/2] rsync support Johannes Schindelin
2007-09-28 5:06 ` [PATCH 1/2] Introduce remove_dir_recursively() Johannes Schindelin
2007-09-28 9:05 ` Junio C Hamano
2007-09-28 12:35 ` Johannes Schindelin
2007-09-28 22:14 ` David Kastrup
2007-09-28 5:07 ` [PATCH 2/2] fetch/push: readd rsync support Johannes Schindelin
2007-09-28 5:20 ` Shawn O. Pearce
2007-09-28 12:22 ` Johannes Schindelin [this message]
2007-09-28 9:30 ` Junio C Hamano
2007-09-28 12:53 ` Johannes Schindelin
2007-09-28 15:28 ` [PATCH v2 0/2] rsync support, was Re: [PATCH 0/2] " Johannes Schindelin
2007-09-28 15:28 ` [PATCH v2 1/2] Introduce remove_dir_recursively() Johannes Schindelin
2007-09-28 15:29 ` [PATCH 2/2] fetch/push: readd rsync support Johannes Schindelin
2007-09-28 15:30 ` Johannes Schindelin
2007-09-28 21:20 ` Junio C Hamano
2007-09-28 22:48 ` Johannes Schindelin
2007-09-29 0:35 ` [PATCH v3 " Johannes Schindelin
2007-09-30 6:09 ` Junio C Hamano
2007-09-30 12:58 ` Johannes Schindelin
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=Pine.LNX.4.64.0709281317170.28395@racer.site \
--to=johannes.schindelin@gmx.de \
--cc=barkalow@iabervon.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=spearce@spearce.org \
/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).