I have the following (Windows command) Subversion script:
svn propset svn:ignore --recursive -F .svnignore .
echo Ignoring files with the following filename patterns:
svn propget svn:ignore
svn copy %sourceUrl% %destUrl%
This is what I get running it:
property 'svn:ignore' set on '.'
property 'svn:ignore' set on '1'
property 'svn:ignore' set on '1\A'
property 'svn:ignore' set on '1\B'
property 'svn:ignore' set on '2'
...
Ignoring files with the following filename patterns:
TempDir
*.o
*.obj
Committing transaction...
Committed revision 79.
The copy operation is successful, however the files that should have been ignored have been copied, too.
The .svnignore file has been picked correctly, as shown in the output. What am I missing?
Please, re-read relevant SVN Book fully and understand
of svn:ignore property
For convenience and speed, I'll quote the most important parts in the topic, but the full understanding of all details from your side is still required
P. 1
and I can't predict directory of your
%sourceUrl%P. 2
(most important and applicable in your case)