How to undelete a file in svn
Look in the .svn/entries file for the URL of the repo.
Get the number of the last revision the file was in before you deleted (or if you don’t know, start from the current one and work backwards)
svn cp -r <rev> <repourl>/<filename> ./<filename>
Then commit.