在对工作副本进行更改后,我无法看到提交选项,但我确保我的svn设置正确无误.
这个错误消息究竟出现了什么问题?
Xcode显示:
Your path is not a working copy
我该怎么做才能解决这个问题?
博客文章“
Xcode,Subversion Error: 155007 (Path is not a working copy directory)”及其评论几乎就是这种错误的参考.
简单的解决方法:
>删除本地副本(cd myxcodeproject; rm -rf.)
>从服务器中删除“build”文件夹
> svn co https:// svnserver / path / trunk / project.
Now you should see .svn
folders in every directory of your local project (you don’t see them if you use the “Export
” function of the SCM panel from Xcode).
At this point,you should be able to edit and commit your changes directly from Xcode.
现在您需要正确初始化项目.
以下部分说明了该部分:
怎么做对(一般原则)
To place the project under Xcode,you need to first import it.
The SCM->commit entire project…
gives error 155007 if you don’t first do this:
Under the SCM menu in Xcode select Repositories,then click the IMPORT icon at the top of that dialog that appears.
Select the project from the list and then click the import button.
Of course you need to first configure at least one repository before doing the steps above.
正确的初始化步骤(详细过程)
- Create the project in XCODE.
- Setup subversion in XCODE and select the subversion repository for this project.
- Use Xcode SCM > Repository and click on the IMPORT icon. This will move the local copy to the subversion repository.
- Now delete your local copy (or move it to another location just in case).
- Finally CHECKOUT the project from subversion (this will create the subversion .svn folders,…).
- Reselect the subversion repository for this project.
- Commit the entire project.