Hi,all
I setup a git public repo (http) over apache2,however I can't
push to remote public repository
$ git push
error: Cannot access URL http://192.168.1.109/demo.git/, return code 22
error: failed to push some refs to 'http://192.168.1.109/demo.git'
Could anyone give some ideas on this problem?
Thanks very much
Lynn Lin [off-list ref] writes:
I setup a git public repo (http) over apache2,however I can't
push to remote public repository
$ git push
error: Cannot access URL http://192.168.1.109/demo.git/, return code 22
error: failed to push some refs to 'http://192.168.1.109/demo.git'
Could anyone give some ideas on this problem?
First, you push over https, not http. Second, you have to setup
WebDAV on server for pushing via http.
Other than that I cannot help, as I never set up git to push via http.
But I would check the documentation ("Git User's Manual" or "Git
Comunity Book" http://book.git-scm.com,... or perhaps best would be
howto/setup-git-server-over-http.txt)
--
Jakub Narebski
Poland
ShadeHawk on #git
Hi,
On Sun, Jun 28, 2009 at 4:11 PM, Jakub Narebski[off-list ref] wrote:
First, you push over https, not http.
It's possible to push over HTTP. Authentication methods include Basic
and Digest.
--
Cheers,
Ray Chuan