From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29112 invoked by alias); 24 Oct 2007 20:05:54 -0000 Received: (qmail 29103 invoked by uid 22791); 24 Oct 2007 20:05:53 -0000 X-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,DK_POLICY_SIGNSOME,FORGED_RCVD_HELO X-Spam-Check-By: sourceware.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (83.160.170.119) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 24 Oct 2007 20:05:48 +0000 Received: from wildebeest.demon.nl ([83.160.170.119] helo=[127.0.0.1]) by gnu.wildebeest.org with esmtp (Exim 4.63) (envelope-from ) id 1IkmU5-0004lM-CC; Wed, 24 Oct 2007 22:05:46 +0200 Subject: Re: frysk git repository From: Mark Wielaard To: Tim Moore Cc: frysk In-Reply-To: <1193255455.16772.8.camel@localhost.localdomain> References: <471F7C3A.4020204@redhat.com> <1193255455.16772.8.camel@localhost.localdomain> Content-Type: text/plain Date: Wed, 24 Oct 2007 20:05:00 -0000 Message-Id: <1193256344.16772.12.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 (2.12.1-3.fc8) Content-Transfer-Encoding: 7bit X-Spam-Score: -4.1 (----) X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q4/txt/msg00071.txt.bz2 On Wed, 2007-10-24 at 21:50 +0200, Mark Wielaard wrote: > On Wed, 2007-10-24 at 19:09 +0200, Tim Moore wrote: > > Although the CVS repository has not yet been turned off, I would like > > people to start > > using the git repository to check in their changes. Remember that the > > command to clone > > the repository is "git-clone ssh://sourceware.org/git/frysk.git". > > I seem to be unable to do this with my sourceware.org account: > > $ git-clone ssh://mark@sourceware.org/git/frysk.git > Initialized empty Git repository in /home/mark/src/git/frysk/.git/ > Permission denied (publickey,gssapi-with-mic). > fatal: The remote end hung up unexpectedly > fetch-pack from 'ssh://mark@sourceware.org/git/frysk.git' failed. OK, I figured it out. sources.redhat.com == sourceware.org and it works with sources.redhat.com because I have the following in my .ssh/config file: Host sources.redhat.com Protocol 1 So just add the following: Host sourceware.org Protocol 1 And everything works as expected over ssh. Cheers, Mark