hg
changeset 163 f38c90953c2c
parent 162 5dcbe4d9a30c
child 174 23057dc57d1b
--- a/hg	Thu May 26 09:04:54 2005 -0800
+++ b/hg	Thu May 26 09:48:50 2005 -0800
@@ -36,10 +36,12 @@
  init                  create a new repository in this directory
  log <file>            show revision history of a single file
  merge <path>          merge changes from <path> into local repository
+ recover               rollback an interrupted transaction
  remove [files...]     remove the given files in the next commit
  serve                 export the repository via HTTP
  status                show new, missing, and changed files in working dir
  tags                  show current changeset tags
+ undo                  undo the last transaction
 """
 
 def filterfiles(list, files):
@@ -424,11 +426,9 @@
         print "%-30s %5d:%s" % (k, repo.changelog.rev(n), hg.hex(n))
 
 elif cmd == "recover":
-    ui.status("rolling back any existing journal")
     repo.recover()
 
 elif cmd == "undo":
-    ui.status("rolling back previous transaction")
     repo.recover("undo")
 
 elif cmd == "verify":