Nathan Hartman wrote on Thu, Jul 15, 2021 at 16:52:18 -0400: > Also, you might try using %20 in place of spaces and see if that makes > a difference. Perhaps by mistake one of those spaces is a different > codepoint, so looks like a regular space, but isn't.
Good idea, but there's no reason to try blindly; running «svn ls» on the containing directory and «svn info» on the file, both of which you have suggested above, is sufficient to rule this out. Speaking of which, going back to the original error message, there's something I didn't notice at first: > > > > svn: E160013: File not found: transaction '41-1j', path > > > > '/Feasibility%20Studies/Use%20Case%20Analysis/TML/RIC_Initial_Use_Case_Analysis' This is a libsvn_fs_fs error message, and the path is percent-escaped. However, libsvn_fs_fs shouldn't be seeing percent-escaped paths at all. What's the version number on the client and server? > If it's a httpd-based server, do httpd's logs show anything that seems > significant? As mentioned upthread, svnserve has logs too, and successful commits would also show up in «svn log ^/». > Dumb question: Could the server be low on disk space? I don't see how that could cause an E160013? Cheers, Daniel