Reputation: 369
I would like to clone remote HG/Mercurial repository and run from terminal sh file. Would like to know which steps needed in more details. So, first I think need to install mercurial. Do I need the mercurial server or just mercurial?
So in Ubuntu the command is
sudo apt-get install mercurial-server
Then need to create SSH key and add to remote repository (Ubuntu):
ssh-keygen -t rsa
ssh-add
ssh-copy-id ...
True? any more help and details?
Upvotes: 1
Views: 1325
Reputation: 25926
True? any more help and details?
No. Just install mercurial
:
sudo apt-get install mercurial
Then clone, similar way like with git
or whatever, if it is public accessible repo:
$ hg clone https://www.mercurial-scm.org/repo/hello my-hello
If it is not, you would need to:
It depends on the service/server.
Upvotes: 2