views:

423

answers:

2

Hi, I'm encountering the following error when attempting to (svn) import from within Xcode).

Import Failed Error: 200030 (SQLite error) Description: no such table: rep_cache

This is a new repository.The svnserve process runs normally. Existing repositories work fine (import, commit, and export) from within Xcode. Neither MacPorts nor Fink are installed. The binaries in /usr/bin comes with Mac OS X 10.6.

I've googled but am unable to find others encountering the same issue.

Thanks in advance for any shared insights.

+1  A: 

I got this exact error with a line I edited in config located in ~/.subversion

I had "build *.nib" (without quotes) on my global-ignores line, which should have been "build * .nib". Don't know if that helps you, I'm a total noob with SVN, XCode, and programming in general. But it did solve my issue adding the space there. Good luck!

--Tom

Tom
Hi Tom, thanks for sharing.Unfortunately this doesn't solve the issue I'm facing, though I'm glad to hear that you solved the problem you faced.- Chris
Global nomad
A: 

I was getting the same error. I found a forum post that solved the problem for me:

Edit <Repository>/db/fsfs.conf to uncomment the line

# enable-rep-sharing = false
shebang
Thanks. I disabled rep-sharing on all new repositories and was able to import.
Global nomad