Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to revert a subversion ignore?

I've run the following command via commandline:

svn propset svn:ignore "*.classpath" .

I wanted to only ignore the .classpath file.

However, this seems to have messed things up and now a lot of directories seem to be ignored.

How do I revert this and start over?

like image 566
Ali Avatar asked Feb 02 '13 04:02

Ali


1 Answers

svn propedit svn:ignore . should bring up your editor, where you can remove the offending ignores one at a time.

like image 165
John Brodie Avatar answered Sep 29 '22 08:09

John Brodie