From 2f782ca203af6700599c71f70439dbe20e83fccd Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 22 Jul 2016 15:12:58 -0700 Subject: [PATCH] Remove references to devguide source on hg.python.org --- docquality.rst | 2 +- faq.rst | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docquality.rst b/docquality.rst index 59d844f11..e7f7c8ffa 100644 --- a/docquality.rst +++ b/docquality.rst @@ -81,7 +81,7 @@ the main documentation. To clone the Developer's Guide:: - $ git clone https://hg.python.org/devguide.git + $ git clone https://github.com/python/devguide To build the devguide, you must have `Sphinx`_ installed. The devguide HTML can be built by running:: diff --git a/faq.rst b/faq.rst index 1fbe352d2..a846f1878 100644 --- a/faq.rst +++ b/faq.rst @@ -367,9 +367,9 @@ to any remote repository. In ``.hg/hgrc`` file for the local repository, add or modify the following section:: [paths] - default = ssh://hg@hg.python.org/devguide + default = ssh://hg@hg.python.org/cpython -This example is for a local repository that mirrors the ``devguide`` repository +This example is for a local repository that mirrors the ``cpython`` repository on ``hg.python.org``. The same approach works for other remote repositories. Anywhere that ```` is used in the commands in this @@ -382,12 +382,12 @@ How do I create a shorthand alias for a remote repository? In your global ``.hgrc`` file add a section similar to the following:: [paths] - dg = ssh://hg@hg.python.org/devguide + c3 = ssh://hg@hg.python.org/cpython -This example creates a ``dg`` alias for the ``devguide`` repository -on ``hg.python.org``. This allows "dg" to be entered instead of the -full URL for commands taking a repository argument (e.g. ``hg pull dg`` or -``hg outgoing dg``). +This example creates a ``c3`` alias for the ``cpython`` repository +on ``hg.python.org``. This allows "c3" to be entered instead of the +full URL for commands taking a repository argument (e.g. ``hg pull c3`` or +``hg outgoing c3``). Anywhere that ```` is used in the commands in this FAQ, ``hg`` should accept an alias in place of a complete remote URL.