Add annotate and blame to the command list and README
authormpm@selenic.com
Tue, 17 May 2005 01:27:14 -0800
changeset 81 17884f79d59d
parent 80 5b7a444c794a
child 82 7ed96baa7caa
Add annotate and blame to the command list and README
README
hg
--- a/README	Tue May 17 01:22:50 2005 -0800
+++ b/README	Tue May 17 01:27:14 2005 -0800
@@ -38,6 +38,8 @@
  $ hg remove bar       # mark a file as removed
  $ hg verify           # check repo integrity
  $ hg tags             # show current tags
+ $ hg annotate [files] # show changeset numbers for each file line
+ $ hg blame [files]    # show commit users for each file line
 
 Branching and merging:
 
--- a/hg	Tue May 17 01:22:50 2005 -0800
+++ b/hg	Tue May 17 01:27:14 2005 -0800
@@ -38,6 +38,8 @@
  dumpmanifest [rev]    dump the latest or given revision of the manifest
  diff [files...]       diff working directory (or selected files)
  tags                  show current changeset tags
+ annotate [files...]   show changeset number per file line
+ blame [files...]      show commit user per file line
 """
 
 def filterfiles(list, files):