How to commit this file to svn?
I'm on a Mac and would like to commit a file to svn but get an error that the parent folder is lock.
Description : Directory '/Developer/Projects/myappproject/trunk/targetfolder/myapp.app/.svn' containing working copy
admin area is missing
Status : 155005
File : subversion/libsvn_wc/lock.c, 947
I run a cleanup from trunk:
svn cleanup targetfolder
and get this error:
svn: 'targetfolder/myapp.app.dSYM' is not a working copy directory
The above is a debug symbol file for an iPhone app. It is really a folder or package.
I can't commit or cleanup. I do se开发者_Go百科e the above file in CornerStone, which is what I use for source control. What should I do at this point?
Looks like you have some corruption there.
I would:
- Make a copy of the project
- Checkout a fresh copy of the entire project
- Run a diff on the project copy and merge any differences to the new project (excluding stuff in .svn directories)
- Check in the new project.
精彩评论