1.[App] if we're in the real pre-commit handler we can't actually add any new fences due to CA restriction
是編譯器內(nèi)部的顯示,與 app 正常使用無關(guān).
2. ”xx“is missing from working copy 的問題 解決方法匯總](http://blog.csdn.net/hdfqq188816190/article/details/52594761)
Xcode8更新后,編譯工程一下子報(bào)出800多條類似的警告,好在不影響運(yùn)行。這個(gè)問題出現(xiàn)的原因如下:
在項(xiàng)目中提交過svn或Git后,再在本機(jī)上刪除不用的圖片資源后,build后會(huì)有 ”xx“is missing from working copy 的警告。在網(wǎng)上找了些資料后,總結(jié)下。
直接在終端下用svn命令刪除missing的文件:(需要cd到提示你missing 文件的路徑下)
svn delete nameOfMissingFile
或用git(如果你用的是Git的話)
git rm nameOfMissingFile
就這樣,cd到missing文件的路徑下,然后用相應(yīng)的命令(svn或git),兩行命令解決問題!