In my SVN folder someone deleted our project source code. Using SVN history we are unable to identify person who deleted those files. Project related none of the activity shown under history.
- is there any option to delete a folder from SVN without log in history?
- is there any option under SVN server to recover those files?
Thanks
All deletions will show up in the log unless the repo is seriously mangled. My guess is that you are querying the wrong path, possibly by issuing
svn logfrom a working copy. The subcommand accepts a URL so you can simply:instead of
… or:
Of course, if you know the directory path and know a revision number where it still existed, you can simply:
Update: Despite Lazy Badger’s surprising claims, revision history is a core feature of Subversion and does not depend on the repository access method:
And it makes sense: not being able to track changes would render Subversion totally useless as version control tool. The commenter is probably confusing the log in
svn logwith the access log maintained by Apache, which is an entirely different thing and cannot even be read though Subversion commands.Any deletion committed to the repository will show up in the revision log, no matter how it was committed, unless (I as I already pointed out) the repository itself has been damaged.