[Python-checkins] devguide (hg_transition): Add section about graphlog.

georg.brandl python-checkins at python.org
Mon Feb 28 21:03:39 CET 2011


georg.brandl pushed c7d1d29b0a3b to devguide:

http://hg.python.org/devguide/rev/c7d1d29b0a3b
changeset:   349:c7d1d29b0a3b
branch:      hg_transition
tag:         tip
user:        Georg Brandl <georg at python.org>
date:        Mon Feb 28 21:02:00 2011 +0100
summary:
  Add section about graphlog.

files:
  faq.rst

diff --git a/faq.rst b/faq.rst
--- a/faq.rst
+++ b/faq.rst
@@ -456,6 +456,22 @@
  hg log -vp -r <revision number>
 
 
+How can I see the changeset graph in my repository?
+---------------------------------------------------
+
+In Mercurial repositories, changesets don't form a simple list, but rather
+a graph: every changeset has one or two parents (it's called a merge changeset
+in the latter case), and can have any number of children.
+
+The graphlog_ extension is very useful for examining the structure of the
+changeset graph.  It is bundled with Mercurial.
+
+Graphical tools, such as TortoiseHG, will display the changeset graph
+by default.
+
+.. _graphlog: http://mercurial.selenic.com/wiki/GraphlogExtension
+
+
 How do I undo the changes made in a recent commit?
 -------------------------------------------------------------------------------
 

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


More information about the Python-checkins mailing list