When Syncronize in my project in SVN
it appears a giant list with the files of Target
where if I try to give commit of the error.
How can SVN ignore these files?
I'm using Eclipse SVN.
When Syncronize in my project in SVN
it appears a giant list with the files of Target
where if I try to give commit of the error.
How can SVN ignore these files?
I'm using Eclipse SVN.
I do not know about Eclipse but I think you should do this manually on the command line:
svn propset svn:ignore Target .
svn:ignore
is the property that does what you want.
Use propedit
if you need to change.
If you want to ignore certain types of files, not a folder:
svn propset svn:ignore "*.txt" .
I know the question is old, but as I needed it now and I was able to find the answer, I would like to register for future research.
You can include folders you do not want to send to SVN
in Eclipse in Windows
→ Preference
→ Team
→ Ignored Resources
.
Click AddPattern
and type target
or the desired folder name.