Take folder files, inside an SVN working copy, running in Linux. The folder was set to be ignored, with the commands:
svn propset svn:ignore * \'fil
If you want to ignore a directory files
, you need to svn propset svn:ignore files
on its PARENT directory, not the directory itself.
e.g.
# your directory structure is this:
# workingCopy
# workingCopy/parent
# workingCopy/parent/subfolder
# to ignore subfolder do this:
svn propset svn:ignore subfolder workingCopy/parent
If there are files within this folder that are under version control, Subversion will NOT ignore them even if the folder is ignored. You will need to remove them from version control (i.e. svn delete
) and then they will be ignored.
A file being under version control takes precedence over any ignore lists that may include it.