我在嘗試重命名.plist文件時遇到問題。 我已經添加到我的項目使用:New File... -> Resource -> Property List
重命名.plist資源時出錯
當我改變它的名字從X代碼(通過點擊兩次文件,然後小費新名稱)我得到一個錯誤從X代碼彈出:
error : bad index file sha1 signature fatal : index file corrupt
我怎麼能重新命名我的檔案?
我在嘗試重命名.plist文件時遇到問題。 我已經添加到我的項目使用:New File... -> Resource -> Property List
重命名.plist資源時出錯
當我改變它的名字從X代碼(通過點擊兩次文件,然後小費新名稱)我得到一個錯誤從X代碼彈出:
error : bad index file sha1 signature fatal : index file corrupt
我怎麼能重新命名我的檔案?
我猜的錯誤消息來自GIT(而不是從Xcode的本身),來看看這篇文章:https://makandracards.com/makandra/5899-how-to-fix-a-corrupt-git-index
How to fix a corrupt git index
If your git index for some reason becomes invalid, no need to worry.
Your index is corrupt when you see this error running usual git commands like git pull, git status, etc.:
error: bad index file sha1 signature fatal: index file corrupt
Though it sounds bad, your changes are still there. Fix it by first removing the index file, then resetting the branch:
rm .git/index git reset You should be all good now.
我的項目是在本地主機上(出於安全原因)。這是否是我的問題的原因?如果沒有,請給我更多的答案細節?我沒有使用mac環境(只是開發與x代碼的應用程序) – zbMax
我沒有更多的細節,如果你使用git,你可以解決你的問題作爲書面... – duDE
好吧,我沒有使用git。我將用新名稱創建一個新的.plist。 – zbMax