0

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?

ewok
  • 20,148
  • 51
  • 149
  • 254

2 Answers2

5

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

**\*.classpath

jstanley
  • 2,087
  • 15
  • 22
3

Recursive rules in the .acignore are not supported in AccuRev versions prior to 5.7. In version 5.6 and earlier, the ACCUREV_IGNORE_ELEMS environment variable may be a better and less tedious solution.

Mike Abusheery
  • 539
  • 2
  • 6