anita2310 / rowboat

Automatically exported from code.google.com/p/rowboat
0 stars 0 forks source link

git hungs while downloading the repo from gitourious #42

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.repo sync
fatal: The remote end hung up unexpectedlyMiB | 3 KiB/s      
fatal: early EOF
fatal: index-pack failed
error: Cannot fetch external-tesseract

What is the expected output? What do you see instead?
It should download the repo complete and establish a development environment. 
Only .repo folder available and no other folder available.

What version of the product are you using? On what operating system?
eclair for omapevm and host operating system is ubuntu 9.0

Original issue reported on code.google.com by ananthu8...@yahoo.co.in on 20 Aug 2010 at 8:56

GoogleCodeExporter commented 8 years ago
up, the same problem I found, who can give a solution!

Original comment by ucs.ming...@gmail.com on 27 Sep 2010 at 3:07

GoogleCodeExporter commented 8 years ago
I found the solution for the problem I faced for downloading the Android Froyo 
source, thats "fatal: Unable to look up gitorious.org (port 9418) (Name or 
service not known)"
error: Cannot fetch bionic

Here the gitorious.org DNS was not getting resolved to its server address, So i 
used the following command,
$ dig gitorious.org to know the server IP address of the git and replaced the 
following line with

$ repo init -u git://gitorious.org/rowboat/manifest.git -m ManifestName
$ repo init -u git://87.238.52.168/rowboat/manifest.git -m ManifestName

Then gave the repo sync, which successfully downloaded the whole source in one 
shot. 

Regards,
Ankit

Original comment by ankith.pisces on 24 Dec 2010 at 11:35