Clone the repo of this training#
The repository of this training uses Mercurial. This choice is discussed in details in a dedicated page on our mail website.
Here, we just present what is necessary to clone the repository of this training and potentially update the code.
Install Mercurial#
Install and setup Mercurial as described here.
Clone the repository#
Finally, you should be able to clone the repository with
hg clone https://foss.heptapod.net/py-edu-fr/py-edu-fr
Update the code#
To pull all new commits locally, first run
hg pull
To update the code (you might need to add the option -C
, corresponding to --clean
):
hg up default
You can also see if there are new topics in the repo and update to a specific topic with:
hg lg
hg up <topic name>