Publishing Mercurial Respository on apache problem
I have a repository in here http://repos.joomlaguruteam.com/
I can browse it but I can clone it. Every time I clone it I have this error
hg clone http://repos.joomlaguruteam.com/hello
destination directory: hello
requesting all changes
abort: HTTP Error 404: Not Found
开发者_Go百科
and the access log have that
115.5.95.59 - - [10/Feb/2011:04:20:33 -0600] "GET /hello?pairs=0000000000000000000000000000000000000000-0000000000000000000000000000000000000000&cmd=between HTTP/1.1" 200 1 "-" "mercurial/proto-1.0"
115.5.95.59 - - [10/Feb/2011:04:20:34 -0600] "GET /hello?cmd=heads HTTP/1.1" 200 41 "-" "mercurial/proto-1.0"
115.5.95.59 - - [10/Feb/2011:04:20:34 -0600] "GET /hello?cmd=changegroup&roots=0000000000000000000000000000000000000000 HTTP/1.1" 404 597 "-" "mercurial/proto-1.0"
What is the problem.
I really hope somebody can help me with that.
Thanks, Yuan
I could clone this by using uncompressed transfer.
- If you are using TortoiseHg, then check the box Use uncompressed transfer
If you are using command-line, then use
--uncompressed
flaghg clone --uncompressed http://repos.joomlaguruteam.com/hello
精彩评论