I'm running into a weird problem trying to commit to my Subversion
repository. This is repeatable on my configuration (Mac OS X 10.5.4
with Apache 2.2.9, Subversion 1.5, and mod_dav_svn installed from
MacPorts.)
Here are my steps:
$ svn co https://127.0.0.1/svn/project . # the repository is on my
local machine
$ mate file1.txt # open with TextMate editor
$ svn ci -m "Checkin"
Sending file1.txt
Transmitting file data .
Committed revision 4.
$ mate file1.txt
$ svn ci -m "Checkin"
Sending file1.txt
svn: Commit failed (details follow):
svn: File 'file1.txt' is out of date; try updating
svn: resource out of date; try updating
$ svn up
At revision 4.
$ svn ci -m "Checkin"
Sending file1.txt
svn: Commit failed (details follow):
svn: File 'file1.txt' is out of date; try updating
svn: resource out of date; try updating
$ rm *
$ rm -rf .svn
$ # return to beginning to repeat; same error messages occur every
time after the 2nd edit
The Apache error log gives the following two errors for the commit
command:
Could not CHECKOUT resource /svn/project/!svn/ver/5/file1.txt. [409,
#0]
resource out of date; try updating [409, #160024]
I've tried the following
- created a new repository
- excluded repository and working copy folders from Spotlight searching
- added Apache configuration directives to ignore and dot-files
or .DS_Store files created by Mac OS X
Any ideas?
Thank you for your help.
Best regards,
Richard
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-07-12 21:46:44 CEST