So I accidentally committed my eclipse .project and .settings files & directories. Instead of going through each folder in the command line (huge amount of folders) is there a way to go through each folder and if one of those files/directories is found, run a svn delete .project?
I was thinking something like:
find . name ".settings" -exec "svn delete .settings" {} \;
but I always get the “No such file or directory error”
EDIT: For your more understanding about
findcommand usage: