[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Error bumping revisions post-commit

From: Ben Collins-Sussman <sussman_at_collab.net>
Date: 2004-07-15 17:54:35 CEST

On Wed, 2004-07-14 at 20:16, Tim Shadel wrote:

> # svn ci -m "Try to move project with file locked."
> Deleting trunk\test
> Adding trunk\newfolder
> svn: Commit succeeded, but other errors follow:
> svn: Error bumping revisions post-commit (details follow):
>
> [Figure out that it was your open file, since no details followed.
> Close the file]

You're committing an addition and deletion; after the commit is
successful, the working copy library tries to truly remove the 'test'
directory from the working copy, as you would expect.

On unix, this is never a problem -- the directory is always unlinked.
On win32, the deletion fails if another process has a file-handle open.
Obviously, you've discovered that.

After closing the file in your editor, your working copy *should* be in
an inconsistent state, requiring cleanup. 'svn status' should show that
certain working copy dirs are locked, and 'svn cleanup' should execute
the unfinished journals and complete the unfinished work.

Have you tried that approach? Removing the 'test' dir by hand is
interfering with the working-copy's ability to finish it's own work.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Jul 15 17:56:13 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.