Automatic SVN conflict handling for XML files -
i make conflict resolutions automatic. project uses xml files save data , users not have knowledge svn or xml editing. use tortoisesvn commit , update work other users. resolve conflicts, insert 'mine' block after 'theirs' block. blocks have same numbers of lines.
specifically in scenario, no, it's not possible. can either have svn automatically use version of file, or version else committed repository - not both.
you'd need run:
svn merge source[@rev] [target_wcpath] --accept mine-full
if want subversion auto-resolve conflicts using version of file, or
svn merge source[@rev] [target_wcpath] --accept theirs-full
if want subversion auto-resolve conflicts using repository's version of file.
unfortunately, there no in-between.
Comments
Post a Comment