Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where is the place in Eclipse to add something to ignore list of SVN

Tags:

eclipse

svn

I want to tell SVN in Eclipse to ignore these when I check in the code. where is the place to go to set this ignore list:

.classpath
.project
.settings*
target
like image 602
Bohn Avatar asked May 27 '11 18:05

Bohn


People also ask

Where is svn repository in Eclipse?

Test SVN Repository in EclipseClick on the other option, scroll the menu, and Select SVN Repository Exploring. Now, we can explore the SVN repository. Here we can create, checkout, and explore the existing repository in Eclipse.

How do I ignore a folder in svn?

If you want to ignore all CVS folders, just add CVS to the ignore list. There is no need to specify CVS */CVS as you did in earlier versions. If you want to ignore all tmp folders when they exist within a prog folder but not within a doc folder you should use the svn:ignore property instead.

Why is Eclipse svn Team menu not showing all options?

You have you run 'Team > Share Project...' to tell SVN that this project is an SVN project before you can do anything else. Once you have set up the sharing the other menu items will appear.


2 Answers

Select project > Team > Synchronize with Repository.

Then right-click on file, select "Add to svn:ignore"

Or go to Window > Preferences > Team > Ignored Resources and add the patterns there.

like image 133
mhaller Avatar answered Sep 23 '22 02:09

mhaller


Make sure you ignore the file type BEFORE commiting to repository since SVN doesn't allow you to ignore a committed file or type.

like image 23
bmoran Avatar answered Sep 22 '22 02:09

bmoran