Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to revert all files in a working directory that match the name "test" anywhere inside the filename.

Is it possible to revert all this 3 files by using hg revert -I syntax:

  • /includes/atest.txt
  • /test.txt
  • /test/test/test.txt
share|improve this question

2 Answers

It should work (I cannot test it right now) with the following syntax, according to issue 1697:

Windows:

hg revert "glob:*test.*"
# or
hg revert -I "*test.*" --all

Unix:

hg revert 'glob:*test.*'
hg revert -I '*test.*'

(Note the simple quotes for Unix)

share|improve this answer
It only works for file extensions not for filenames. – danip Sep 19 '11 at 14:06
@danip: considering a glob pattern is a "Shell-style glob", if it works for a shell, it should work as well in the Mercurial command. – VonC Sep 19 '11 at 15:04

To expand on the given answer above

You can include all files in subdirectories in your revert by using the following syntax:

Windows:

hg revert "glob:**\*test.*"

And I assume Unix would be:

hg revert 'glob:**/*test.*'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.