I'm using subversion 1.5 and have a single file in a branch that I want to merge into another branch. When I do a svn merge http://path/to/file I get a Cannot replace a directory from with error. Does this just mean that subversion can't do this?
|
|
|||
|
|
|
I think your best best is an svn copy from one branch to the other. |
|||||||||||
|
|
Try specifying the path to the local file as well. eg.
|
||||
|
|
I think you need to svn merge http://server/repos/path/to -r where is the revision where the file was added. That way merge info is recorded (in case of a Subversion 1.5 or higher repository) |
|||
|
|
|
The merge how Andrew recommends it worked for me not for every file. I had 3 files, but with the 3rd I got the error "...path not found". Adding the argument " --ignore-ancestry" solved that problem. But after merging I had strange modified/merged file status and a lot of svn:mergeinfo added to my working copy. So I decided to just do a simple copy&paste for single files to avoid such confusing stuff until we switch to GIT where this tasks are really no problem at all ;) |
|||
|
|