
May 8th, 2008, 03:18 PM
|
|
|
|
Subversion on Mac
I'm having difficulty getting subversion to checkout properly on a Mac. After doing a checkout, I get that the files are locked and a suggestion to do an svn cleanup. But when I do an svn cleanup, it complains that the files are not under version control. However, all works fine on a Linux machine.
I read somewhere that this may be due to Mac's file structure not being case-sensitive.
Does anyone else have this issue and found a solution?
Code:
$ svn update
svn: Working copy '.' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
$ svn update
svn: Working copy '.' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
$ svn cleanup
svn: In directory '.'
svn: Error processing command 'modify-wcprop' in '.'
svn: 'filename.html' is not under version control
$ svn status
? filename1.html
? filename2.html
? filename23.html
? filename43.html
? filename56.html
? filename65.html
Your help is greatly appreciated.
|