On Thursday, December 21, 2017 at 6:36:37 AM UTC+1, Alex Wang wrote: > > If it's corrupted, but why if I operate on Linux, everything is ok. This > only happens on windows. I think maybe there are something wrong only in > local data on Windows. The repository is very large now, I really don't > want to check out again. Is there any way to fix the problem? >
The char is not allowed as being part of a filename or path on Windows. That's why you get the error. And that's why the working copy is now corrupted. There's no easy way to fix such a corrupted working copy - it would require editing internal files and SQLite DBs manually. Best way is to check out a fresh working copy. Also for the future: make sure that you don't commit files with the same name that only differ in case (e.g., "file.txt" and "File.txt") on Linux, because on Windows that will get you also a corrupted working copy: the Windows file system is case insensitive and two such files would therefore cause conflicts. Stefan -- You received this message because you are subscribed to the Google Groups "TortoiseSVN" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tortoisesvn/87022d05-11ab-4e27-84fd-11c2e6451d6a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
