Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docquality.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down
14 changes: 7 additions & 7 deletions faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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://[email protected]/devguide
default = ssh://[email protected]/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 ``<remote repository>`` is used in the commands in this
Expand All @@ -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://[email protected]/devguide
c3 = ssh://[email protected]/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 ``<remote repository>`` is used in the commands in this
FAQ, ``hg`` should accept an alias in place of a complete remote URL.
Expand Down