SVN Associations: Delete a Branch Locally, but Not Displayed as Changed

I accidentally went and synchronized the folder of my branches, as a result of which all the branches on my local hard drive were downloaded (very large size)

Now, how can I delete branches locally, but not appear in svn, how is it changed / missing?

I am using tortisesvn

Edit:
Uninstallation of the system in separate branches will be absent. I do not want

alt text http://img49.imageshack.us/img49/58/svnbranches.png

+4
source share
4 answers

Another option I'm using is using sparse directories . In TortoiseSVN, use the "Update to check ..." submenu instead of "Update" and select "Update Depth". Also see this in the TortoiseSVN documentation for the depths of validation that applies to updates (when using Update to Validate)

+4
source

Delete the .svn folder in the folder you want to delete. Then just delete them.

0
source

You can delete (not delete svn, but delete the system) branches on your local computer, and the subversion server will not know anything.

To clarify, this will delete the top-level folder. Then you can reload what you need.

0
source

You can delete any files and folder on a working copy of subversion using Explorer (without using TortoiseSvn Delete!). They will appear again if you perform an svn update. To prevent this from happening, perform the update in the branch that you need, or delete the .svn folder in the upper directory.

0
source

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


All Articles