views:

133

answers:

1

Hi everyone.

My problem is that whenever I update a folder via tortoise svn I get the files that were edited and now different from revision 1 to revision 2, SVN adds a "<<<<<<" to places that were affected.

Can anyone please provide some sort of solution?

+13  A: 

These markers indicate where there have been conflicting changes between what you have changed and what somebody else has changed. The SVN Book has a section on merging which shows you what to expect. The book talks about the command line commands but the workflow for TortoiseSVN is similar.

See in particular the section titled "Merging conflicts by hand".

Greg Hewgill
But can't this be disabled ?
Emil Hajric
No, this feature is important to the proper operation of Subversion. Subversion tries to make sure that work done by different people on the same file is not lost, and these markers help accomplish that. This only happens if Subversion cannot *automatically* merge the changes, as explained in the SVN Book.
Greg Hewgill