changeset 130:77b10482cc47

learning in workflows: How to see a specific patch.
author Arne Babenhauserheide <bab@draketo.de>
date Fri, 01 May 2009 13:55:17 +0200
parents 177b4120c26b
children 59b5985db58a
files text/learning_mercurial_in_workflows.txt
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/text/learning_mercurial_in_workflows.txt	Fri May 01 13:54:32 2009 +0200
+++ b/text/learning_mercurial_in_workflows.txt	Fri May 01 13:55:17 2009 +0200
@@ -66,7 +66,11 @@
 
 $ hg log
 
-This prints a list of changesets along with their data, the user who committed them (you) and their commit message. 
+This prints a list of changesets along with their date, the user who committed them (you) and their commit message. 
+
+To see a certain diff, you can use the "-p" switch (--patch)
+
+$ hg log -p -r 3
 
 == Lone developer with linear history ==