Question

I want to download zip file of the project located in code.google.com from Ubuntu. I am using Ubuntu 12.04.

And I also referred this, but still I haven't get any output. And also this

Please help me out. I have sucked with this problem and can't go ahead in my work.

Était-ce utile?

La solution

Make sure that you have installed git. If you don't have installed git yet, try it this way in a console:

sudo apt-get install -y git

After that you should be able to download the sources like this:

git clone https://path/to/repo

That special repo you are linking uses svn so you need to install svn:

sudo apt-get install -y svn

The download works like this:

svn checkout http://android-mt-tutorials.googlecode.com/svn/trunk/ android-mt-tutorials-read-only

By the way it is also explained here:

https://code.google.com/p/android-mt-tutorials/source/checkout

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top