Wayne, How can I access the rsync maintained patches repository with the git tools? These work: $ firefox http://gitweb.samba.org/?p=rsync.git;a=summary $ git clone git://git.samba.org/rsync.git $ firefox http://gitweb.samba.org/?p=rsync.git/patches.git;a=summary So I thought this might work, but it doesn't: $ git clone git://git.samba.org/rsync.git/patches.git Initialized empty Git repository in /PATH/TO/patches/.git/ fatal: The remote end hung up unexpectedly -- Matt
On Thu, May 28, 2009 at 09:04:59PM -0400, Matt McCutchen wrote:> Wayne, > > How can I access the rsync maintained patches repository with the git > tools? These work: > > $ firefox http://gitweb.samba.org/?p=rsync.git;a=summary > $ git clone git://git.samba.org/rsync.git > $ firefox http://gitweb.samba.org/?p=rsync.git/patches.git;a=summary > > So I thought this might work, but it doesn't: > > $ git clone git://git.samba.org/rsync.git/patches.git > Initialized empty Git repository in /PATH/TO/patches/.git/ > fatal: The remote end hung up unexpectedlySee http://www.mail-archive.com/rsync@lists.samba.org/msg23892.html HTH -- Best regards / s pozdravem Petr Uzel, Packages maintainer --------------------------------------------------------------------- SUSE LINUX, s.r.o. e-mail: puzel@suse.cz Lihovarsk? 1060/12 tel: +420 284 028 964 190 00 Prague 9 fax: +420 284 028 951 Czech Republic http://www.suse.cz
On Thu 28 May 2009, Matt McCutchen wrote:> > $ firefox http://gitweb.samba.org/?p=rsync.git;a=summaryI guess you left out the quotes you must have used here, as otherwise a=summary won't be included in the url... Paul
On Thu, May 28, 2009 at 09:04:59PM -0400, Matt McCutchen wrote:> How can I access the rsync maintained patches repository with the git > tools?Sorry for forgetting to get that taken care of. The issue turned out to be that the samba site defaults to not allowing "git:" exports unless specifically enabled, and I had neglected to touch the right file to enable access. However, I also just got the repo moved to its own top-level dir: git clone git://git.samba.org/rsync-patches.git That makes its access a little more normal. Access to the old location still works as well (due to a symlink). ..wayne..