svnsync 的各种问题

1. Repository has not been enabled to accept revision propchanges

解决方法:

Linux:

在hooks下新建pre-revprop-change文件,内容是

#!/bin/sh
exit 0;

Windows:

在hooks下新建pre-revprop-change.bat文件, 内容为空即可


2. Revprop change blocked by pre-revprop-change hook (exit code 255) with no output

解决方法:

Linux:

chmod a+x pre-revprop-change

注意,如果是在windows里用cygwin执行svnsync, 那么要参考Linux的解决方法


你可能感兴趣的:(Miscellaneous)