I'm trying to use the Subversion merge --reintegrate feature to merge a development branch back to the project trunk. Subversion version 1.6.17 on Fedora 14.
I get the following
[me@fedora14 product_trunk]$ svn merge --reintegrate ^/product/branches/NewFeature
svn: Retrieval of mergeinfo unsupported by 'svn://fedorabox/e2458/branches/ErrtsFeaturDev'
I've checked versions of svnserve and svn client. These are both 1.6.17 -which should support the reintegrate feature.
[root]# svnserve --version
svnserve, version 1.6.17 (r1128011)
compiled Jun 2 2011, 15:24:04
...
[root]# svn --version
svn, version 1.6.17 (r1128011)
compiled Jun 2 2011, 15:24:04
I've also checked the dates on apache svn modules (am I using apache with svn:// ?) The dates check out .
[me@fedora14 modules]$ ls -l *svn*
-rwxr-xr-x. 1 root root 13520 Jun 3 2011 mod_authz_svn.so
-rwxr-xr-x. 1 root root 155328 Jun 3 2011 mod_dav_svn.so
This Fedora 14 machine has been updated from an earlier version of Fedora, so our Subversion repository was most likely initially created with a pre-1.5 Subversion. I think this could be my problem, but I can't find anything indicating what if anything needs to be changed.
Thanks in advance.