Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file that I have removed from subversion, however in the mean time someone else has updated this file and it now is in conflict.

I have spoken to them and we are agreed that it should be deleted. Any ideas how we can stop it being in conflict?

share|improve this question

3 Answers

up vote 4 down vote accepted

You can use the "check for modifications" command to get a list of changed files. There you can revert the conflicted file. This works in the commit dialog too.

share|improve this answer
Thanks, this worked for us – jamesj Jun 25 '10 at 8:25

You can use the svn resolved command to remove the conflict state and commit again.

share|improve this answer
we are using toroiseSVN which doesnt have a command line interface. We have tried marking it as resolved, but as the files dont exist anymore then it doesnt seem to work. – jamesj Jun 25 '10 at 7:55
I use Linux so I don't have access to TortoiseSVN. You could try creating an empty file with that filename and mark it as resolved using the GUI, then delete it again (not svn delete) and commit. Marking as resolved is the way to do it, and I just tested it on a test repo I created. – Daniel Egeberg Jun 25 '10 at 8:26

I had a similar problem and used revert on the folder that contained the deleted file given that the latest commit did not contain the file. The only problem is that you need to commit first any other changes you made in the folder

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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