1

我对存储库主干的属性进行了更改。具体来说,我修改了 extern 以指向较新的版本。

当我提交时,我收到以下错误。

Commit failed (details follow):
Commit blocked by pre-commit hook (exit code 1) with output:
error: you don't have enough permissions for this transaction:
you can't update properties of trunk/  
4

1 回答 1

3

我已经弄清楚了问题所在。

更改是位于存储库根目录中的 \conf\svnperms.conf 文件。该文件如下所示:

[_default_]
trunk/.*          = *(add,remove,update)
branches/[^/]+/.* = *(add,remove,update)
tags/[^/]+/       = *(add,remove)
trunk/            = *(add)
branches/         = *(add)
tags/             = *(add)

我做了如下所示的修改。

trunk/            = *(add)

trunk/            = *(add,update)
于 2012-04-23T08:34:16.923 回答