Eli
Eli

Reputation: 33

SVN cleanup fails - other posted solutions aren't working

I'm running tortoiseSVN and I haven't been able to commit or update successfully ever since I interrupted an update (or commit) process a while back. I've found other postings of similar issues, but not of the suggestions are applicable or work - I really need to figure out a way to fix it without starting over.

Details:

Anyway to fix this without checking out fresh?

thank you!

Eli

Upvotes: 3

Views: 41591

Answers (6)

dtm
dtm

Reputation: 792

Also try running svn cleanup from the command line.

I was just able to use that to resolve the error: Cleanup failed to process the following paths: .... Previous operation has not finished; run 'cleanup if it was interrupted. Please execute the 'cleanup' command"

Upvotes: 0

vaishakhiification
vaishakhiification

Reputation: 1

Just Clear the cache and run again..

To do so : GO to .svn folder (hidden folder in the root) => Go to temp => Delete everything in it :)

Upvotes: 0

Guru
Guru

Reputation: 419

It looks like the svn meta info on you local workstation got corrupted. I don't see that you can fix this easily until you clean your workspace.

Try this...

  1. Back up your folder
  2. Delete .svn folder from parent directory and all subdirectories in that folder, or
  3. Check out fresh code in the separate directory and ... copy files from the backup folder where you don't have .svn files, so you don't lose your changes.

Upvotes: 8

Reimar Spohr
Reimar Spohr

Reputation: 1

  1. In Windows 7: Render hidden files visible.
  2. Back-up Subversion-Controlled Folder.
  3. Check-Out SVN Repository to an empty "New Folder".
  4. Delete .svn folder in Subversion-Controlled Folder.
  5. Copy .svn Folder from "New Folder" to Subversion-Controlled Folder.
  6. Delete "New Folder".
  7. In Windows 7: Render hidden files invisible.
  8. Delete Back-up of Subversion-Controlled Folder.

Upvotes: 0

Parth Bhagat
Parth Bhagat

Reputation: 509

I found a good solution for the same issue on blog:

I have tried it and it works fine. In fact I am having source code which is of size more than 3 GB, in this case delete source code after taking backup of changed sources is very difficult. So, found this solution as appropriate to my case.

Upvotes: 7

Milan Bartl
Milan Bartl

Reputation: 62

This is much better solution in case you're dug in the depths of your repository structure...just Cleanup a level (or two) higher!

Subversion stuck due to "previous operation has not finished"?

Upvotes: 0

Related Questions