Menu
  • HOME
  • TAGS

Subversion Edge svnsync: DAV request failed & pre-revprop-change error

svn,svn-hooks,svnsync,subversion-edge

It has to be exit 0, not exit 1, see SVNBook | pre-revprop-change hook reference: The hook must actually exist and return a zero exit value before a revision property modification can happen. For example, it's enough to put exit 0 to the target repository's pre-revprop-change-hook. However this way any...

subversion svn sync message meaning

svn,svnsync

This link claims: Subversion has always documented that properties had to have LF line endings. In 1.6 the server started enforcing it. although I could not find official docs about it. Above change caused bug: svnsync fails when source has ^M in svn:* properties (eol-style). Bug was fixed in svnsync...

SVN Sync to folder on commit

svn,svnsync

People do this so often that it's in the official Subversion FAQ Short version: Make your www directory a working copy Create a post-commit hook which executes svn update against that working copy. If your repository server doesn't have direct access to the web server (which it shouldn't), you'd be...