如何避免“Xcode,Subversion 错误:155007(路径不是工作副本目录)”?
对工作副本进行更改后,我无法看到提交选项,但我确保 svn
的设置正确。
该错误消息到底有什么问题?
Xcode 显示:
您的路径不是工作副本
我应该做什么来解决这个问题?
I am not able to see the commit option after I make changes to my working copy, but I ensured that my settings for svn
were correct.
What exactly is the problem with this error message?
Xcode is showing:
Your path is not a working copy
What should I do to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
博客文章“Xcode, Subversion Error: 155007 (Path is not aworking copy directory)" 及其注释几乎是此类错误的参考。
简单解决方法:
cd myxcodeproject; rm -rf .
)svn 中删除“
build
”文件夹co https://svnserver/path/trunk/project 。现在您需要正确初始化项目。
以下部分说明了该部分:
如何正确执行(一般原则)
正确的初始化步骤(详细流程)
The blog post "Xcode, Subversion Error: 155007 (Path is not a working copy directory)" and its comment are pretty much the reference on this kind of error.
Simple Workaround:
cd myxcodeproject; rm -rf .
)build
” folder from the serversvn co https://svnserver/path/trunk/project .
Now you need to initialize correctly the project.
The following sections illustrate that part:
How to do it right (general principle)
Right Initialization steps (detailed process)