Remotec
Remotec

Reputation: 10782

Tortoise SVN deleted folders keep coming back

I have a number of projects in my repository that are no longer needed.

I removed them from the repository - this seemed to remove them from SVN control as the relevant icons in Windows Explorer went away and the folders now show as standard Windows folders.

I then deleted the items from the hard disk.

Imagine my suprise to find when I went into the folder the next day, all of the deleted folders back. So I deleted them again - and they came back again.

None of them are showing as under source control.

What am I doing wrong??

Upvotes: 6

Views: 2244

Answers (5)

Martin Verner
Martin Verner

Reputation: 742

I had the same problem. Delete the files from the repo using TortoiseSVN. Checked again and again, the files were deleted. I even tested from another computer. Every time I updated the files came back.

The solution for me was to restart the SVN server and the problem went away and so did the files.

Upvotes: 0

Picard
Picard

Reputation: 51

I had the same problem, deleted a folder with SVN. It reappeared as unversioned.

It was because the folder was still in my visual studio project file. After deleting it there, e

Upvotes: 5

Eric
Eric

Reputation: 19873

Did you commit the delete?

Upvotes: 1

Stefan
Stefan

Reputation: 43585

Use the repository browser to check whether those folders really are deleted in the repository.

But I assume they are not. Most likely you just deleted the folders in your explorer. You must use the "Delete" command from the TSVN menu to remove folders from version control and then commit that deletion.

Upvotes: 3

Otávio Décio
Otávio Décio

Reputation: 74310

You are probably referencing a previous revision number where those folders still existed.

Upvotes: 0

Related Questions