Flex Builder:resources:plugins:subversion:filtering
From Adobe Labs
This technology shipped on June 27, 2006 and is no longer hosted on Labs. Most of the supporting content for this release can be found on the Adobe.com website.
Setting up Subversion to ignore Flex Builder 2 files
You can set up Subversion to ignore specific files and directories. This is useful if you don't want to add Flex Builder 2 project files and compile directories to the repository.
This can be done by using the Subversion svn:ignore property.
Create a file named ignore.txt (the name doesnt matter). Place the file in the root directory where you want to the ignore take effect.
Each line of the file contains a pattern that will be ignore. Here are the Flex Builder 2 specific ones that you may want to ignore:
.actionScriptProject .actionScriptProperties .flexProperties .flexProject .project bin .settings
From the command line, cd to the directory where your ignore file is, and run the following command:
svn -R propset svn:ignore -F ignore.txt .
This recursively walks the directory tree from the current directory, and setsall files that match the patterns in ignore.txt to ignore.
