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
|
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
|
||||
|
|
|
It should work (I cannot test it right now) with the following syntax, according to issue 1697: Windows:
Unix:
(Note the simple quotes for Unix) |
|||
|
To expand on the given answer above You can include all files in subdirectories in your revert by using the following syntax: Windows:
And I assume Unix would be:
|
||||
|
|