怎样解决升级到xcode8.0 is missing from working copy locked

IOS开发(108)
转载地址/xwren/archive//2704488.html
在项目中提交过svn后,再在本机上删除不用的图片资源后,build后会有 &&”xx“is missing from working copy &的警告。在网上找了些资料后,总结下。
直接在终端下用svn命令删除missing的文件:(需要cd到提示你missing 文件的路径下)
svn delete nameOfMissingFile
或用Git(如果你用的是Git的话)
git rm nameOfMissingFile
有关于在终端下没法用svn命令的问题,如提示svn命令找不到,可以参考这篇文章:
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:115474次
积分:1471
积分:1471
排名:千里之外
转载:175篇
(2)(1)(3)(1)(2)(4)(11)(1)(19)(9)(5)(25)(1)(16)(4)(3)(1)(28)(3)(6)(33)(2)1021人阅读
当不小心在工程文件中删掉文件时。有可能会提示&.xxx & is missing from working copy
有可能是SVN引起的。删掉这个文件就好了
如果是单个文件。进入Terminal 相应的路径,svn delete XXX
这时候我们打开Terminal(终端) 输入cd &空格 &然后把在网上工程到Terminal 回车
输入命令行rm&-rf&`find&.&-type&d&-name&.svn`
then the worning is missed ... &
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:71560次
积分:2471
积分:2471
排名:第11462名
原创:183篇
(5)(1)(4)(4)(6)(3)(160)4297人阅读
warning: Missing file: is missing from working copy
fatal error: file '….h' has been modified since the precompiled header was built
的解决办法
/questions/5897232/how-to-remove-properly-a-file-on-xcode-4-with-svn-version-control
To prevent the error from occurring in the first place, always &Delete& through Xcode, or, through your SVN client (but, if you delete it through your SVN client you'll still have to delete the missing reference in Xcode - so you might as well just delete
it in Xcode to being with).
/questions/7071523/xcode-4-1-fatal-error-stdlib-modified-since-the-precompiled-header-was-built
I had this exact same problem after applying the recent Xcode patch. I ended up deleting the DerivedData folder for my app at:
~/Library/Developer/Xcode/DerivedData/{project name + gobly-gook}
This directory contains built products and indexes for the project. It is
OK to delete it because it only contains items generated by Xcode. Xcode will regenerate everything next time the project is opened.
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:239882次
积分:2874
积分:2874
排名:第9360名
原创:65篇
转载:18篇
评论:14条
(3)(1)(3)(1)(1)(1)(4)(1)(2)(2)(1)(2)(6)(12)(3)(3)(1)(1)(5)(2)(6)(8)(1)(2)(12)7564人阅读
编译的时候会有missing file的警告,原因是由于SVN或git造成的
只要根据警告,每个都使用命令svn rm 丢失文件的路径即可。
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:993043次
积分:9670
积分:9670
排名:第1337名
原创:100篇
转载:182篇
评论:230条
(1)(2)(1)(1)(1)(2)(1)(1)(2)(2)(3)(1)(4)(1)(6)(12)(2)(1)(3)(5)(2)(1)(3)(5)(2)(1)(1)(1)(3)(9)(3)(10)(6)(11)(3)(3)(2)(1)(2)(9)(1)(5)(1)(4)(2)(1)(3)(7)(6)(4)(7)(2)(2)(13)(21)(16)(1)(7)(32)(18)(4)

我要回帖

更多关于 upgrade working copy 的文章

 

随机推荐