Subject: | svn properties aren't changed (svn:mergeinfo is really important) |
Relocating works like a charm.
As svn:mergeinfo is not changed you get the side effect that the mergeinfo is broken.
Sample:
relocate from /src to /trunk/src
mergeinfo in /branch stays the same
~~~~
K 13
svn:mergeinfo
V 42
/src:751-759,761-762,764,767,778-783,804
~~~~
should be changed to
~~~~
K 13
svn:mergeinfo
V 44
/trunk:751-759,761-762,764,767,778-783,804
~~~~
Another part is the svn:log property - this can get tricky as it is multi-language but if possible a change from
~~~~
K 7
svn:log
V 36
Merged revisions 778-782 from src:
* did important stuff
~~~~
to
~~~~
K 7
svn:log
V 38
Merged revisions 778-782 from trunk:
* did important stuff
~~~~
would be marvellous.