--- a/mercurial/commands.py Sat Jun 04 12:14:14 2005 -0800
+++ b/mercurial/commands.py Sat Jun 04 12:24:23 2005 -0800
@@ -389,6 +389,10 @@
def undo(ui, repo):
repo.undo()
+def verify(ui, repo):
+ """verify the integrity of the repository"""
+ return repo.verify()
+
table = {
"add": (add, [], "hg add [files]"),
"addremove": (addremove, [], "hg addremove"),
@@ -436,6 +440,7 @@
"status": (status, [], 'hg status'),
"tip": (tip, [], 'hg tip'),
"undo": (undo, [], 'hg undo'),
+ "verify": (verify, [], 'hg verify'),
}
norepo = "init branch help"