Re: git-clone works with ssh but not with http/https/git
From: Erez Zilber <hidden>
Date: 2016-06-15 22:44:49
On Tue, Jun 24, 2008 at 3:35 PM, Robert Haines [off-list ref] wrote:
quoted
I ran git-daemon on the server side like this: sudo git-daemon --base-path=/pub/git/ --export-all --listen=kitesSo your clone address for git:// is wrong, you don't need the /pub/git: git clone git://erez.zilber@kites/erez.zilber/my_test.git As you've moved the root of the filesystem as far as git-daemon is concerned to /pub/git with the --base-path option.
I understand. However, when I try to run it according to your suggestion: [root@kd001 t]# git clone git://erez.zilber@kites/erez.zilber/my_test.git Initialized empty Git repository in /home/erez.zilber/work/tmp/t/my_test/.git/ fatal: Unable to look up erez.zilber@kites (port 9418) (Name or service not known) fetch-pack from 'git://erez.zilber@kites/erez.zilber/my_test.git' failed. I also tried to run it without "erez.zilber@": [root@kd001 t]# git clone git://kites/erez.zilber/my_test.git Initialized empty Git repository in /home/erez.zilber/work/tmp/t/my_test/.git/ kites[0: 172.16.1.11]: errno=Connection refused fatal: unable to connect a socket (Connection refused) fetch-pack from 'git://kites/erez.zilber/my_test.git' failed. Is there any log file on the server that can help me trace this problem (something like /var/log/httpd/error_log but for the git protocol)? Thanks, Erez