I am trying to move a folder from a subversion repository to another while keeping all of its histories intact and these are the commands I used:
svnrdump dump -r0:HEAD http://asvn/original_repo/sub_folder_A | svnrdump load http://asvn/new_repo/sub_folder_A
the dump command itself works well but I am getting the following error when I try to use the load command:
svnrdump: E175002: DAV request failed; it's possible that the repository's pre-r evprop-change hook either failed or is non-existent svnrdump: E175002: Revprop change blocked by pre-revprop-change hook (exit code 1) with output:
** ERROR-FILES: Unable to get revision (0) file list: 'svnlook.exe: missing argument: r Type 'svnlook help' for usage.'
svnrdump: E135007: Write error in pipe
I found this link and added a pre-revprop-change.bat with exit 0 as suggested but I am getting a new error:
svnrdump: E175002: DAV request failed; it's possible that the repository's pre-r evprop-change hook either failed or is non-existent
svnrdump: E175002: Revprop change blocked by pre-revprop-change hook (exit code 1) with output:
** ERROR-FILES: Unable to get revision (0) file list: 'svnlook.exe: missing argument: r Type 'svnlook help' for usage.'
Have any of you came across this issue and know the solution to it?
Thanks!