Search code examples
accurev

accurev: ignore all files with a given extension


I had assumed that placing a *.classpath entry in my .acignore file would ignore all filed that have the .classpath extension, but this only works for the root directory. I can reach subdirectories using */*.classpath, etc, but is there a blanket way to icnore all files in my project with that extension?


Solution

  • The correct syntax to ignore the .classpath files recursively is:

    **\*.classpath