Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

resolve property conflicts in svn

I saw this line from the free svn online book:

"To resolve property conflicts, simply ensure that the conflicting properties contain the values that they should, and then use the svn resolved command to alert Subversion that you have manually resolved the problem."

I had a conflict in my repo with the svn:ignore property. I fixed the conflicts as was said in the .prej file generated by the conflict

How do I tell SVN that the conflict with the property is now resolved?

like image 575
yretuta Avatar asked Mar 31 '11 06:03

yretuta


People also ask

How do I view conflicts in SVN?

Look for conflicted files in the Current Folder browser. Check the SVN status column for files with a red warning symbol , which indicates a conflict. Right-click the conflicted file and select Source Control > View Conflicts to compare versions.


2 Answers

You have to given the resolved command.

svn resolved .

"." for the current directory.

like image 64
khmarbaise Avatar answered Oct 13 '22 00:10

khmarbaise


Found it. I examined the contents of dir_conflicts.prej which will give me an idea of the conflict. I then fixed it as specified in the file and I deleted dir_conflicts.prej and the conflict was already resolved.

like image 32
yretuta Avatar answered Oct 12 '22 23:10

yretuta