changeset 2864:4be11d7b13fa

doc: use pip to install evolve
author Philippe Pepiot <phil@philpep.org>
date Tue, 29 Aug 2017 14:27:08 +0200
parents 3e3a276c9e91
children b0b8cc3064b0
files docs/index.rst
diffstat 1 files changed, 7 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/docs/index.rst	Tue Aug 29 12:20:30 2017 +0200
+++ b/docs/index.rst	Tue Aug 29 14:27:08 2017 +0200
@@ -108,28 +108,17 @@
 Installation and setup
 ----------------------
 
-To use ``evolve``, you must:
-
-  #. Clone the ``evolve`` repository::
+Using pip::
 
-       cd ~/src
-       hg clone https://www.mercurial-scm.org/repo/evolve
+    pip install --user hg-evolve
 
-  #. Configure the extension, either locally ::
-
-       hg config --local
+Then add in your `hgrc` config::
 
-     or for all your repositories ::
-
-       hg config --edit
-
-     Then add ::
+   [extensions]
+   evolve=
 
-       evolve=~/src/evolve-main/hgext3rd/evolve/
-
-     in the ``[extensions]`` section (adding the section if necessary). Use
-     the directory that you actually cloned to, of course.
-
+You can easily edit the `hgrc` of repository using `hg config --local` or your
+user configuration `hg config --edit`.
 
 Next steps:
 -----------