8

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??

Perishable Dave
  • 2,858
  • 2
  • 24
  • 29
objectiveccoder001
  • 2,981
  • 10
  • 48
  • 72

1 Answers1

14

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
Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Perishable Dave
  • 2,858
  • 2
  • 24
  • 29