up vote 64 down vote favorite
25
share [g+] share [fb]

I have a lot of changes in a working folder, and something screwed up trying to do an update.

Now when I issue an 'svn cleanup' I get:

>svn cleanup .
svn: In directory '.'
svn: Error processing command 'modify-wcprop' in '.'
svn: 'MemPoolTests.cpp' is not under version control

MemPoolTests.cpp is a new file another developer added and was brought down in the update. It did not exist in my working folder before.

Is there anything I can do to try and move forward without having to checkout a fresh copy of the repository?

Clarification: Thanks for the suggestions about moving the directory out of the way and bringing down a new copy. I know that is an option, but it is one I'd like to avoid since there are many changes nested several directories deep (this should have been a branch...) What I'm hoping for is a more aggressive way of doing the cleanup, maybe someway of forcing the file svn is having trouble with back into a known state (and I tried deleting the working copy of it ... that didn't help).

link|improve this question

70% accept rate
Re: Using a new copy. Grab a copy of beyond compare to diff the versions against each other – Jon Winstanley Jan 27 '10 at 12:50
1  
Did amin's solution not work for you? Surely an obvious answer to accept otherwise? – chrispy Jun 3 '10 at 10:37
feedback

14 Answers

When starting all over is not an option...

I deleted the log file in the .svn directory (I also deleted the offending file in .svn/props-base)

Then did a cleanup..

Then resumed my update.

link|improve this answer
I was getting a similar problem to the original question here (due to an interrupted svn checkout). This fixed it for me. Though I also had to go up to the parent directory and do the same there. – Nigel Hawkins May 28 '09 at 8:01
Fixed an interrupted svn commit for me. – chrispy Jun 3 '10 at 16:20
Good call! worked like a champ. – Chris Gutierrez Jun 16 '10 at 18:25
+1 for making my day ;-) – rturrado Feb 18 '11 at 11:28
worked perfectly, thanks. – jedihawk Feb 23 '11 at 22:19
show 5 more comments
feedback

If all else fails:

  1. Checkout into a new folder.
  2. Copy your modified files over.
  3. Check back in.
  4. zip the old folder up somewhere ( you never know + paranoia is good) before deleting it and using the new one.
link|improve this answer
feedback

subversion stores its information per folder (in .svn), so if you are just dealing with a subfolder you don't need checkout the whole repository - just the folder that has borked:

cd dir_above_borked
mv borked_dir borked_dir.bak
svn update borked_dir

this will give you a good working copy of the borked folder but you still have your changes backed up in borked_dir.bak . The same principle applies with windows/tortoise

if you have changes in an isolated folder have a look at the

svn checkout -N borked_dir   # non-recursive but deprecated

or

svn checkout --depth=files borked_dir 
# depth is new territory  to me but svn help checkout
link|improve this answer
2  
hahahah I love bork. – Sara Chipps Oct 1 '08 at 17:41
feedback

It's possible that you have problem with two filenames differing only by uppercase. If you ran into this problem, creating another working copy directory does not solve the problem.

Current Windows (i.e. crappy) filesystems simply does not grok the difference between Filename and FILEname. You have two possible fixes:

  1. check out at platform with real filesystem (unix-based), rename the file and commit changes.
  2. when you are sticked to windows you can rename files in Eclipse svn repository browser which does recognise the difference and rename the file there.
  3. (added by 2011-05-24 edit) you can rename the problematic files also remotely from any command-line svn client using svn rename -m "broken filename case" http://server/repo/FILEname http://server/repo/filename
link|improve this answer
This turned out to be my problem; a coworker had somehow managed to check in several Xcode project files, each with two copies differing only be letter case. I used TortoiseSVN to browse the repo and delete the extra files. Then I deleted my local folders containing the duplicate files, and svn update finally succeeded. – Kurt Sep 27 '10 at 13:38
feedback
$ ls -la .svn
$ rm -f .svn/lock

Then

$ svn update

Hope it helps

link|improve this answer
feedback

I had the exact same problem, I couldn't commit and cleanup would fail.

Using a command line client I was able to see an error message indicating that it was failing to move a file from .svn/props to .svn/prop-base

I looked at the specific file and found that it was marked read-only. After removing the read-only attribute I was able to cleanup the folder and the commit my changes.

Hope this helps.

link|improve this answer
I gave up on that tree, and got a new one in the end. But thanks for the hint on something to check next time. – Rob Walker Oct 20 '08 at 19:22
feedback

(Before you try moving folders and doing a new checkout)

delete the folder the offending file(s) are in - yes, even the .svn folder, then do an svn cleanup on the very top / parent folder

link|improve this answer
feedback

Read-only locking sometimes happens on network drives with windows. Try to disconnect and reconnect it again. Then cleanup and update.

link|improve this answer
feedback

If the issue is case sensitivity (which can be a problem when checking out to a Mac, as well as windows) and you don't have the option of checking out onto a *nix system, the following should work. Here's the process from the beginning:

% svn co http://[domain]/svn/mortgages mortgages

[checkout ensues… then…]

svn: In directory 'mortgages/trunk/images/rates'

svn: Can't open file 'mortgages/trunk/images/rates/.svn/tmp/text-base/Header_3_nobookmark.gif.svn-base': No such file or directory

What's happening here is that svn is trying to check out two files with similar names that differ only by case - Header_3_noBookmark.gif and Header_3_nobookmark.gif. Mac filesystems default to case insensitivity in a way that causes svn to choke in situations like this. So...

% cd mortgages/trunk/images/rates/

% svn up

svn: Working copy '.' locked

svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)

However, running svn cleanup doesn't work, as we know.

% svn cleanup

svn: In directory '.'

svn: Error processing command 'modify-wcprop' in '.'

svn: 'spacer.gif' is not under version control

spacer.gif isn't the problem here… it just can't move past the previous error to the next file. So I deleted all of the files from the directory other than .svn, and removed the svn log. This made cleanup work, so that I could check out and rename the offending file.

% rm *; rm -rf .svn/log; svn cleanup

% svn up Header_3_nobookmark.gif

A Header_3_nobookmark.gif

Updated to revision 1087.

% svn mv Header_3_nobookmark.gif foo

A foo

D Header_3_nobookmark.gif

% svn up

A spacer.gif

A Header_3_noBookmark.gif

Following this, I was able to go back to the root directory of the project, and run 'svn up' to check out the rest of it.

Chris

link|improve this answer
feedback

After going through most of the solutions that are cited here, I still was getting the error. The issue was case insensitive OSX. Checking out a directory that has two file with the same name but different capitalization causes an issue. For example ApproximationTest.java and Approximationtest.java should not be in the same directory. As soon as we get rid of one of the file, the issue goes away.

link|improve this answer
feedback

I hit an issue where following an Update, svn showed a folder as being conflicted. Strangely, this was only visible through the command line - Tortoise thought it was all fine.

#>svn st
!       my_dir
!       my_dir\sub_dir

svn cleanup, svn revert, svn update and svn resolve were all unsuccessful at fixing this.

I eventually solved the problem as follows:

  • Look in the .svn directory for "sub_dir"
  • Use RC -> Properties to uncheck the 'read only' flag on the entries file
  • open the entries file and delete the line "unfinished ..." and the corresponding checksum
  • save, and re-enable the read-only flag
  • repeat for the my_dir directory

Following that, everything was fine.

Note I didn't have any local changes, so I don't know if you'd be at risk if you did. I didn't use the delete / update method suggested by others - I got into this state by trying that on the my_dir/sub_dir/sub_sub_dir directory (which started with the same symptoms) - so I didn't want to risk making things worse again!

Not quite on-topic, but maybe helpful if someone comes across this post as I did.

link|improve this answer
feedback

Subclipse gets confused by Windows' truly diabolical locking behaviour. Unlocker is your friend. This can find locked files and forcibly release the locks.

link|improve this answer
feedback

I just had this same problem on Windows 7 64-bit. I ran console as administrator and deleted the .svn directory from the problem directory (got an error about logs or something, but ignored it). Then, in explorer, I deleted the problem directory which was no longer showing as under version control. Then, I ran an update and things proceeded as expected.

link|improve this answer
feedback

It might not apply in all situations, but when I recently encountered this problem my "fix" was to upgrade the subversion package on my system. I had been running 1.4.something, and when I upgraded to the latest (1.6.6 in my case) the checkout worked.

(I did try re-downloading it, but a checkout to a clean directory always hung at the same spot.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.