I have an svn tree that over years has become messy. It contains many files and directories that have not been modified in many years... the date of last activity is a major clue.
If I "svn rename foodir somewhere/foodir" I get the desired result, but with new dates and history. The files thus look more fresh than they really are.
With cvs I could just "mv" the relevant files or directories on the server get the desired result of reorganizing the tree without creating history or messing with dates. Can the same operation be done with svn?
I am aware of "svn propset svn:date": SVN commit with old date/time But that's both awkward and only a partial solution.