问题描述
在Apache的htdocs下创建一个空的 git仓库
git --bare init myweb.git
然后在浏览器访问 http://127.0.0.1/myweb.git/ 确认是可以看到文件的。
但是在git命令行下,用 git clone http://127.0.0.1/myweb.git 却报错
fatal: repository ’http://127.0.0.1/myweb.git/’ not found
这是为何呢?
不应该是权限问题呀,clone只需要只读权限即可。
是不是空仓库还需要其他配置?
问题解答
回答1:你还需要在htdocs/myweb.git下执行
git update-server-info