##// END OF EJS Templates
recover: fix typos...
Valentin Gatien-Baron -
r44608:e96ed3a6 stable
parent child Browse files
Show More
@@ -5671,7 +5671,7 b' def push(ui, repo, dest=None, **opts):'
5671
5671
5672 @command(
5672 @command(
5673 b'recover',
5673 b'recover',
5674 [(b'', b'verify', True, b"run `hg verify` after succesful recover"),],
5674 [(b'', b'verify', True, b"run `hg verify` after successful recover"),],
5675 helpcategory=command.CATEGORY_MAINTENANCE,
5675 helpcategory=command.CATEGORY_MAINTENANCE,
5676 )
5676 )
5677 def recover(ui, repo, **opts):
5677 def recover(ui, repo, **opts):
@@ -5691,7 +5691,7 b' def recover(ui, repo, **opts):'
5691 return hg.verify(repo)
5691 return hg.verify(repo)
5692 else:
5692 else:
5693 msg = _(
5693 msg = _(
5694 b"(verify step skipped, run `hg verify` to check your "
5694 b"(verify step skipped, run `hg verify` to check your "
5695 b"repository content)\n"
5695 b"repository content)\n"
5696 )
5696 )
5697 ui.warn(msg)
5697 ui.warn(msg)
@@ -21,7 +21,7 b''
21 checking files
21 checking files
22 checked 1 changesets with 1 changes to 1 files
22 checked 1 changesets with 1 changes to 1 files
23
23
24 recover, explicite verify
24 recover, explicit verify
25
25
26 $ touch .hg/store/journal
26 $ touch .hg/store/journal
27 $ hg ci -Am0
27 $ hg ci -Am0
@@ -45,7 +45,7 b' recover, no verify'
45 [255]
45 [255]
46 $ hg recover --no-verify
46 $ hg recover --no-verify
47 rolling back interrupted transaction
47 rolling back interrupted transaction
48 (verify step skipped, run `hg verify` to check your repository content)
48 (verify step skipped, run `hg verify` to check your repository content)
49
49
50
50
51 Check that zero-size journals are correctly aborted:
51 Check that zero-size journals are correctly aborted:
General Comments 0
You need to be logged in to leave comments. Login now