Jeff Axelrod
Jeff Axelrod

Reputation: 28188

How do I edit/undo/remove an entry from .svnignore in Eclipse?

This seems like a simple problem, but I can't figure out how to edit the svn-ignore list from Eclipse. Strangely I couldn't find how to do so on a web search or on stackoverflow.

Thanks!

Upvotes: 13

Views: 13737

Answers (2)

Jeff Axelrod
Jeff Axelrod

Reputation: 28188

  1. Right click on the folder
  2. Team meanu → Show Properties
  3. On the properties tab, click the SVN:ignore line, and edit the value
  4. Commit the folder

Upvotes: 27

bmargulies
bmargulies

Reputation: 100050

There is no such thing as a '.svnignore' file. There is the svn:ignore property of a directory, specifying things to ignore therein. As per another answer, this property can be edited eclipse via Team->Properties.

Upvotes: 1

Related Questions