7

Is there a command that searches a specified string over a Mercurial repository and displays revisions where it is found?

If not, are there any examples of how to implement it?

utapyngo
  • 6,946
  • 3
  • 44
  • 65

1 Answers1

14

hg grep <string> will search your entire repository history for string.

ataylor
  • 64,891
  • 24
  • 161
  • 189