this is exactly what this file is for.
just add an entry like this to exclude the "work" directory:
path/to/directory/work
or, if you want to exclude all files and folders with the name "work", follow these steps:
**/work
I just checked this to make sure it will work. according to version 5.7, you do not require a separate entry to exclude the contents of the βworkβ. however, I would not recommend using the wildcard character "**" for such a "name" of the file name.
If you want to share your .acignore file with other users of your project, be sure to create the .acignore file so that others can turn it off.
this is the .acignore file that I installed in the root of any accurev repository on my machine to exclude the standard maven, intellij, eclipse and git files:
**/target **/.idea **/.metadata **/.classpath **/.project **/.settings **/.git **/*.iml **/*.ipr **/.gitignore **/atlassian-ide-plugin.xml
who said that once I had a colleague who violated our continuous integration by creating a package called "target", so use it with caution.
source share