Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TortoiseSVN "Show log" displays incorrect logs (from a different respository)

I have a repository called myrepos, and required a new repository based on the HEAD. So, I used the SVN hotcopy command to achieve this - myrepos-R2.

Now, I have made a number of changes to myrepos-R2, and in the past, have been able to view these comments via tortoiseSVN. All of a sudden however, I can't seem to see the comments. The log keeps displaying the comments from the master. Also, when I try to view the logs of a particular file that I modified in myrepos-R2, tortoise says it can't find it.

Any ideas what is going on? Is this a tortoise problem or SVN?

like image 940
user1372067 Avatar asked Dec 27 '22 01:12

user1372067


1 Answers

You have several options to solve this:

  1. disable the log cache (Settings->Log Caching->Enable log caching)
  2. since both of your repositories have the same UUID, allow ambiguous UUIDs (Settings->Log Caching->Allow ambiguous UUIDs)
  3. Change the repository UUID on your second repository (svnadmin setuuid REPOS_PATH). I'd go with this option since each repository should have its own UUID anyway.
like image 144
Stefan Avatar answered Mar 22 '23 22:03

Stefan