Visual SVN for VS2010 supports legacy remote branch reference

I am using Visual SVN client plugin for Visual Studio 2010 .

I recently created a branch in Visual SVN, but I accidentally saved it in the wrong place by specifying "NewName" in the "trunk /" section instead of "branch /". Before I realized the error, I switched several times between version 2 in the "Subversion Page Split" drop-down menu on the toolbar.

After creating a new branch in the "branches /" section, I deleted the original branch, but the drop-down list in the Visual SVN plugin still holds onto the link to the legacy / deleted branch. I can’t remove the dropdown link link to "trunk / NewName". Is there any way to do this?

I even tried to edit the registry, but that did not help.

+4
source share
2 answers

If you want to clear the list of recently used branches, you must delete the .suo file of your solution. Visual Studio should be closed when this file is deleted.

+2
source

VisualSVN just keeps a list of the last 50 branches. This list is stored in the Visual Studio.suo file. VisualSVN does not access the server to retrieve this list.

+1
source

Source: https://habr.com/ru/post/1379146/


All Articles