I tried to use svn exactly as described in the documentation, like:
svn merge file:///myPathToRep/trunk/
My branch is clean and does not contain any local modifications. My branch is modified the trunk isn't. So what happens is following: The merge results in conflict, because svn takes the very first version of the trunk and try to compare it against the changed version of the branch. What happend with
The command is smart enough to only duplicate changes that your working copy doesn't yet have. (From SVN documentation)???
I' was only able to get svn merge working when using it with svn merge -r N:HEAD file:///..., where N is the revision when the branch was created
I'm using svn 1.5.7 and I'm working without a server only using the command line.
Any help would be appreciated
UPDATE: Ok now I got it. The repository was created with 1.4.x or even older. I had to do a svnadmin upgrade and now I'm getting the mergeinfo too.