First of all remove old not needed resources from svn and local copy.
On top level use command:
here is directory structure sample:
\application
\files
\tmp
> svn st
M files
? tmp
set the ignore property for tmp
> svn propedit svn:ignore ./
In opened vi editor add newlines what should be ignored, in mine example its just “tmp”.
Dont forget commit changed ./ dir.
how to check what props are set? :
> svn proplist
Properties on '.':
svn:ignore
to see the value of svn:ignore
> svn propget svn:ignore
tmp
how to delete svn:ignore?
1. just use "svn propedit" again and remove what should be removed
or totally remove properties from dir:
2. svn propdel svn:ignore ./
end.