0

我正在使用 NetBeans IDE 和 VisualSVN 1.7。我收到以下错误。

Failed to execute WebDAV PROPPATCH
svn: Commit failed (details follow):
svn: At least one property change failed; repository is unchanged
RA layer request failed
svn: Error setting property 'ignore': 
Could not execute PROPPATCH.

我该如何解决这个错误?

4

3 回答 3

2

听起来您的 SVN 客户端正在尝试通过不允许使用 proppatch 动词的代理进行操作。

尝试配置您的 SVN 客户端以绕过您的 Web 代理服务器或配置您的 Web 代理服务器以允许为您的 SVN 服务器使用所有 HTTP 动词。

于 2009-04-10T10:15:51.743 回答
1

请检查 svn 属性“忽略”中的结束行字符。大多数客户端标准化行尾,但看起来 netbeans 没有。

于 2009-04-10T12:24:37.457 回答
0

Assuming you are using a proxy like one of the answers suggested, did you remember to put a pre-revprop-change.bat file in the directory of the proxy? The contents should be at least

@exit 0

No or necessary.

于 2012-03-29T00:08:10.463 回答