# HG changeset patch # User mpm@selenic.com # Date 2005-05-17 09:27:14 # Node ID 17884f79d59d8c8b3630819e931b0ae8c232d338 # Parent 5b7a444c794a09fbef5d8f4aeba482d1f4377ebe Add annotate and blame to the command list and README diff --git a/README b/README --- a/README +++ b/README @@ -38,6 +38,8 @@ Mercurial commands: $ 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: diff --git a/hg b/hg --- a/hg +++ b/hg @@ -38,6 +38,8 @@ def help(): 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):