I am using NetBeans IDE and VisualSVN 1.7. I get the following error.
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.
How can I fix this error?
Upvotes: 0
Views: 1620
Reputation: 356
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.
Upvotes: 0
Reputation: 4041
Please check end line character in svn property 'ignore'. Most clients normalize line endings, but it looks netbeans does not.
Upvotes: 1
Reputation: 2912
It sound like your SVN client is trying to operate through a proxy that does not allow the use of proppatch verb.
Try configuring your SVN client to bypass your web proxy server or configuring your web proxy server to allow the use of all of the HTTP verbs for your SVN server.
Upvotes: 2