Not Sending Target Files

4

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.

    
asked by anonymous 09.01.2015 / 18:33

2 answers

2

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" .
    
09.01.2015 / 18:43
1

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 WindowsPreferenceTeamIgnored Resources .

Click AddPattern and type target or the desired folder name.

    
30.07.2016 / 18:49