I did a clean checkout of a repository then every day I have an hudson job that runs a script to backup the configuration. Part of the script is to add *.xml
Once, I met this error info, because I add a directory in a SVN directory. The directory which I added is copied from another SVN director, and it had a .svn
directory, so I met the error info.
Remove the .svn
directory (rm -rf .svn
) and it will work after.
This is the same case I met. Hope it help some other people.