[Python-checkins] devguide: Update FAQ entry about tags

antoine.pitrou python-checkins at python.org
Sun Feb 6 20:30:03 CET 2011


antoine.pitrou pushed dd431b68732e to devguide:

http://hg.python.org/devguide/rev/dd431b68732e
changeset:   258:dd431b68732e
branch:      hg_transition
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sun Feb 06 20:29:30 2011 +0100
summary:
  Update FAQ entry about tags

files:
  faq.rst

diff --git a/faq.rst b/faq.rst
--- a/faq.rst
+++ b/faq.rst
@@ -372,22 +372,11 @@
 
 Run::
 
-    svn list svn+ssh://pythondev@svn.python.org/python/tags
+   hg tags
 
-or visit::
+to get a list of tags.  To update your working copy to a specific tag, use::
 
-    http://svn.python.org/view/python/tags/
-
-to get a list of tags.  To switch your current sandbox to a specific tag,
-run::
-
-    svn switch svn+ssh://pythondev@svn.python.org/python/tags/r242
-
-To just update to the revision corresponding to that tag without changing
-the metadata for the repository, note the revision number corresponding to
-the tag of interest and update to it, e.g.::
-
-    svn update -r 39619
+   hg update <tag>
 
 
 How do I create a branch?

--
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list