when i do a svn status ., i get this:

!     C auto-complete-config.elc
      >   local edit, incoming delete upon update
!  +  C auto-complete.elc
      >   local edit, incoming delete upon update
!  +  C popup.elc
      >   local edit, incoming delete upon update
!  +  C fuzzy.elc
      >   local edit, incoming delete upon update

basically, these files shouldn't be in the repository. A developer has removed them. Then, i think i did a svn rm ... after the fact by mistake (should've done svn update . instead).

So now, when i do svn status ., i get these tree conflict messages.

I found the doc here but not sure how to “merge” it according to the doc.

how to get rid of them?

I think my working copy is in sync with the repository. Don't know why these messages shows. These files should be removed and are removed as far as i know everywhere. I tried svn update . and svn revert . but i still get this message when i do svn status ..

link|improve this question

78% accept rate
feedback

4 Answers

up vote 45 down vote accepted

Try to resolve the conflict using

svn resolve --accept=working PATH
link|improve this answer
thanks. that seems to be the right solution. (didn't know about "resolve" option before. I marked it as answer. Though, for some reason didn't work for me, probably because my working copy tree has been corrupted or whatnot... in the end i resolved it by just deleting the dir and do a update. – Xah Lee Dec 1 '10 at 12:36
1  
It didn't work for me initially, so I checked out another copy of the svn branch in a temporary folder. Then I deleted the PATH causing conflict and committed the changes. After that I went back to my original copy and ran this command. It worked with the message "Resolved conflicted state of PATH" This works, thanks :) – Anirudh Tomer Mar 29 at 10:40
feedback

Short version:

$ svn st
!  +  C foo
      >   local edit, incoming delete upon update
!  +  C bar
      >   local edit, incoming delete upon update
$ touch foo bar
$ svn revert foo bar
$ rm foo bar

Long version:

This happens when you edit a file, while someone else deleted the file and commited first. As a good svn citizen you do an update before a commit. Now you have a conflict. Realising that deleting the file is the right thing to do, you delete the file from your working copy. Instead of being content, svn now complains that the local files are missing, in addition to the conflicting update which ultimately wants to see the files deleted. Good work, svn.

Should svn resolve not work, for whatever reason, you can do the following:

Initial situation: Local files are missing, update is conflicting.

$ svn st
!  +  C foo
      >   local edit, incoming delete upon update
!  +  C bar
      >   local edit, incoming delete upon update

Recreate the conflicting files:

$ touch foo bar

New situation: Local files to be added to the repository (yeah right, svn, whatever you say), update still conflicting.

$ svn st
A  +  C foo
      >   local edit, incoming delete upon update
A  +  C bar
      >   local edit, incoming delete upon update

Revert the files to the state svn likes them (that means deleted):

$ svn revert foo bar

New situation: Local files not known to svn, update no longer conflicting.

$ svn st
?       foo
?       bar

Now we can delete the files:

$ rm foo bar

svn no longer complains:

$ svn st

Done.


Note: the same procedure also work for the following situation:

$ svn st
!     C foo
      >   local delete, incoming delete upon update
!     C bar
      >   local delete, incoming delete upon update
link|improve this answer
This is the one that worked for me. The accepted answer didn't do anything for me. – Benjam Apr 11 at 5:40
Works where the accepted answer did not. – Shannon A. Apr 19 at 18:48
feedback

I just got this same issue and I found that

$ svn revert foo bar

solved the problem.

svn resolve did not work for me:

$ svn st
!  +  C foo
      >   local edit, incoming delete upon update
!  +  C bar
      >   local edit, incoming delete upon update

$ svn resolve --accept working
svn: Try 'svn help' for more info
svn: Not enough arguments provided

$ svn resolve --accept working .

$ svn st
!  +  C foo
      >   local edit, incoming delete upon update
!  +  C bar
      >   local edit, incoming delete upon update

$ svn resolve --accept working foo
Resolved conflicted state of 'foo'

$ svn st
!  +    foo
!  +  C bar
      >   local edit, incoming delete upon update
link|improve this answer
feedback

If you haven't made any changes inside the conflicted directory, you can also rm -rf conflicts_in_here/ and then svn up. This worked for me at least.

link|improve this answer
feedback

protected by Jason McCreary Dec 28 '11 at 18:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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