How can I find all the directories in my svn repository with the property of svn:ignore?
|
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 | |||
feedback
|