2

Possible Duplicate:
Why am I getting tree conflicts in subversion?

I am trying to merge a file located in "main/dir1/dir2/somefile.txt" from trunk into branch. However the folder "dir1/dir2" does not exist in branch and hence I am getting tree conflict. How can I resolve this so that dir1/dir2/somefile.txt gets created on branch automatically?

Currently I am using the following command to merge all the changes in my current working directory:

svn merge -r 254933:254935 https://svnrepo.de/analytics/trunk my-analytics-dir
 !     C javasource/com/gsi/webstore/platform/component/analytics/dbmigrate/data
 >   local delete, incoming edit upon merge
Community
  • 1
  • 1
user477402
  • 65
  • 2
  • 6

1 Answers1

1

svn resolve --accept theirs-full -R javasource/com/gsi/webstore/platform/component/analytics/dbmigrate/data

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110