vote up 0 vote down star

I am getting this following error even though i am the only person working on this project.

> Error: 155015 (A conflict in the working copy obstructs the current operation) Description: Commit failed

why would this occur as all i keep doing is committing the project every time before do some serious coding. I have committed three times now it is not allowing any more as it throws that error.

flag

57% accept rate
More of a question for Apple Support? Not really a programming question unless this error is being produced by your code. – Lazarus Sep 23 at 12:54
Programming questions are not restricted to code. Questions about SCM or SDE are valid programming questions. – mouviciel Sep 23 at 14:30
And not a question for Apple as it's a Subversion issue. – Terry Wilcox Sep 23 at 14:48

1 Answer

vote up 2 vote down check

You've got a conflict that needs to be resolved in svn. If it's not one of the files, check if it's a tree conflict.

From the SVN 1.6 release notes:

Subversion 1.6 recognizes a new kind of conflict, known as a "tree conflict". Such conflicts manifest at the level of directory structure, rather than file content.

Situations now flagged as conflicts include deletions of locally modified files, and incoming edits to locally deleted files. Files and directories which are victims of a tree conflict cannot be committed before the conflict is marked resolved.

Note that Subversion is still treating renames as a "copy+delete" operation, so file renames causing tree conflicts can only be detected in terms of file additions and deletions. Because of this, false positives during tree conflict detection are possible.

To facilitate tree conflict detection, attempting to commit the deletion of a file which has already been deleted in the HEAD revision now causes an error. In Subversion 1.5, this was treated as a no-op, potentially resulting in "empty" revisions which contained no changes.

link|flag
Snow Leopard now comes with version 1.6, where Leopard came with 1.4, so he might be hitting this if he just upgraded. – Brad Larson Sep 23 at 17:15

Your Answer

Get an OpenID
or

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