1

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

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

Yuan Chen
  • 1,117
  • 1
  • 11
  • 18

1 Answers1

2

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 flag

    hg clone --uncompressed http://repos.joomlaguruteam.com/hello

Raghuram
  • 51,854
  • 11
  • 110
  • 122
  • Hi, but Why I have to uncompressed the transfer, is there anyway that I can config it to allow hg clone http://repos.joomlaguruteam.com/hello – Yuan Chen Feb 10 '11 at 10:57
  • @Yuan Chen. This could be due to version mismatch between client and server. http://mercurial.selenic.com/wiki/UpgradeNotes has some info on --uncompressed – Raghuram Feb 10 '11 at 11:15
  • @Raghum Hi, I can't pull from the server or check incoming please look at this stackoverflow.com/q/4969858/507172 – Yuan Chen Feb 12 '11 at 04:05