I am trying to query the SVN Log to get an XML output for a feature branch to include all revisions between 2 dates using SlikSVN cmd line. I am getting the error above "svn: E160013: File not found: revision 21602, path 'XXX'".
When I browse to the location in the path it doesn't exist and if I search through SVN log in tortoise I can't find the revision 21602. This is the query:
svn log --xml PATH -v -r {2012-09-25}:{2013-02-22} > XXX.xml
I tired running the following:
svn log --xml PATH -v -r 21603:{2013-02-22} > XXX.xml
and the same error is returned except with revision "21603" even though I can see it exists in the Tortoise Log.
I have run the exact same query against many feature branches before and never had this issue. I tried running it against the trunk this was cut off as a test and I get the same type of error. Just on an aside the revisions refer to folders and files(XXX in the error message outlined above) in the root of the branch that never existed. Some help on this would be much appreciated as I have exhausted all resources available to find out what's going on here.