hg revert -r 4 -I *.aspx

isn't working for me. Any help? And no, I don't want to use TortoiseHG.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Try hg revert -r 4 -I **/*.aspx from the root directory of the repository. The **.aspx matches any file in any subdirectory in the repository whereas *.aspx only matches them in the current directory.

See hg help patterns for more information, which I've just noticed shows a regexp-based alternative:

  hg revert re:.*\.aspx$
link|improve this answer
abort: no files or directories specified; use ---all to revert the whole repo. When I do --all, it works. Except I don't want to revert the whole repo. – Jonathan Henson May 6 '11 at 4:05
alright, I just realized that you took out the -I. I got **.aspx: No such file in rev 94........ – Jonathan Henson May 6 '11 at 4:08
@jonathan: sorry, I was missing the -I argument. Added it in my example now. – Niall C. May 6 '11 at 4:08
@Niall , same message. – Jonathan Henson May 6 '11 at 4:11
@niall hg revert -r 4 re:.*\.aspx$ did it thanks. I'll be marking this as the answer. All the best! Question, why did the other not work – Jonathan Henson May 6 '11 at 4:13
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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