How can I find all the directories in my svn repository with the property of svn:ignore?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted
svn propget -R svn:ignore
link|improve this answer
feedback

find . -type d > folders.txt then copy the content of folders.txt (without the first line) to the svn:ingore file

You can also send the output of find directly into the svn:ingore file

link|improve this answer
Seems to be a misunderstanding: The question is about finding dirs with "svn:ignore", not setting it. – sleske May 17 '10 at 15:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.