comparison mercurial/commands.py @ 17717:009db477c9fb

help: add information about recovery from corruption to help of "verify" Before this patch, there is no information about what users should (or can) do for recovery from corruption of repositories. This patch adds URL of the Mercurial Wiki page explaining about recovery from corruption.
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Thu, 04 Oct 2012 01:24:05 +0900
parents 6e4b962600a3
children 1c523c4008f7
comparison
equal deleted inserted replaced
17716:1adba7ff4d26 17717:009db477c9fb
5877 This will perform an extensive check of the repository's 5877 This will perform an extensive check of the repository's
5878 integrity, validating the hashes and checksums of each entry in 5878 integrity, validating the hashes and checksums of each entry in
5879 the changelog, manifest, and tracked files, as well as the 5879 the changelog, manifest, and tracked files, as well as the
5880 integrity of their crosslinks and indices. 5880 integrity of their crosslinks and indices.
5881 5881
5882 Please see http://mercurial.selenic.com/wiki/RepositoryCorruption
5883 for more information about recovery from corruption of the
5884 repository.
5885
5882 Returns 0 on success, 1 if errors are encountered. 5886 Returns 0 on success, 1 if errors are encountered.
5883 """ 5887 """
5884 return hg.verify(repo) 5888 return hg.verify(repo)
5885 5889
5886 @command('version', []) 5890 @command('version', [])