Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google code downloading source

This might be an extremely stupid question, but for the life of me, I cannot figure out how to download this:

http://code.google.com/p/xmppframework/source/browse/#hg%253Fstate%253Dclosed

There is nothing under the "downloads" tab. And when I try to "clone" it using my terminal it says "HG command not found".

Any ideas??

like image 551
objectiveccoder001 Avatar asked May 25 '11 23:05

objectiveccoder001


People also ask

Is Android 12 open source?

The Android source code is open, so anyone can use it to build any kind of device. However, if manufacturers wish to use the Android name with their products, or want access to Google Play, they must first demonstrate that their devices are compatible.


1 Answers

hg is the executable for Mercurial, you're going to need to download and install Mercurial.

Once you have it installed you can use it to clone the project:

hg clone https://xmppframework.googlecode.com/hg/ xmppframework
like image 60
Perishable Dave Avatar answered Nov 06 '22 04:11

Perishable Dave