你会如何避免“Xcode,Subversion错误:155007(路径不是工作副本目录)”?

你会如何避免“Xcode,Subversion错误:155007(路径不是工作副本目录)”?,第1张

概述在对工作副本进行更改后,我无法看到提交选项,但我确保我的svn设置正确无误. 这个错误消息究竟出现了什么问题? Xcode显示: Your path is not a working copy 我该怎么做才能解决这个问题? 博客文章“ Xcode, Subversion Error: 155007 (Path is not a working copy directory)”及其评论几乎就是这种错 在对工作副本进行更改后,我无法看到提交选项,但我确保我的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.
总结

以上是内存溢出为你收集整理的你会如何避免“Xcode,Subversion错误:155007(路径不是工作副本目录)”?全部内容,希望文章能够帮你解决你会如何避免“Xcode,Subversion错误:155007(路径不是工作副本目录)”?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1022683.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存