Xcode: issue “file xxx.png is missing from working copy” at project building

后端 未结 24 2092
猫巷女王i
猫巷女王i 2020-12-04 08:22

After deleting/adding some png files to project, i have got messages when building project.

\"file ProjectPath\\aaa\\xxx.png is missing from working copy.\"

24条回答
  •  情歌与酒
    2020-12-04 08:49

    This is occurred when you delete file on Xcode, but didnt tell svn server about it.

    Go to command line tool, and delete file directly.

    svn delete missingFile.m 
    

    and commit it

    svn commit -m "Deleting file"
    

    note that if you delete .svn folder, the warning is disappear but you will lost communication with svn server.

提交回复
热议问题