4

I work on a lot of projects and sometimes I'd prefer to just delete my local repositories. However, I am limited in this by my occasional use of the secret phase (as I need to check how my repository differs from the server).

Is there a search I can use to find changesets in the secret phase or do I have to revert to (the slow)

hg log --debug | grep secret -B 2 -A 15
Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
Stephen
  • 19,488
  • 10
  • 62
  • 83

1 Answers1

9

See hg help revsets for information on how to specify ranges of revisions. This should do the trick:

hg log -r "secret()"
Ned Deily
  • 83,389
  • 16
  • 128
  • 151