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:25 PM, Jakub Narebski [off-list ref] wrote:
"Erez Zilber" [off-list ref] writes:quoted
I think that I'm using the right repository for git-clone because it's the same path that I used for git push: [root@kd001 my_test.git]# git-push --all ssh://erez.zilber@kites/pub/git/erez.zilber/my_test.git[...]quoted
looks like git-update-server-info did some work (added the refs file). Back to the client: [root@kd001 t]# git-clone http://kites/pub/git/erez.zilber/my_test.git Initialized empty Git repository in /home/erez.zilber/work/tmp/t/my_test/.git/ Cannot get remote repository information. Perhaps git-update-server-info needs to be run there? The path is the same path that was used for pushing the repository. What did I miss here?First, obvious question: do you have web server enabled?
Yes
Second, less obvious: how this server maps pathname information from URL into path in the filesystem?
I guess that the problem is that no proper mapping exists. That's why I see the following in /var/log/httpd/error_log: [Tue Jun 24 16:31:52 2008] [error] [client 172.16.0.7] File does not exist: /var/www/html/pub What do I need to add in /etc/httpd/conf.d/ in order to set the mapping to /pub/git instead of /var/www/html/pub ? Is there an example that shows how to map? Thanks, Erez