Git - 忽略Xcode工程中UserInterfaceState.xcuserstate文件的问题
Posted 公羽寒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git - 忽略Xcode工程中UserInterfaceState.xcuserstate文件的问题相关的知识,希望对你有一定的参考价值。
一、在同 .Git目录下创建.gitignore文件。在文件中加入如下内容:
*.xcuserstate
project.xcworkspace
xcuserdata
UserInterfaceState.xcuserstate
project.xcworkspace/
xcuserdata/
UserInterface.xcuserstate
二、退出xcdoe, 打开终端(Terminal),进入项目目录下。
三、在终端键入 git rm --cached [YourProjectName].xcodeproj/project.xcworkspace/xcuserdata/[ YourUsername].xcuserdatad/UserInterfaceState.xcuserstate
四、在终端键入 git commit -m "Removed file that shouldn‘t be tracked"
五、重新打开Xcode commit, push。
以上是关于Git - 忽略Xcode工程中UserInterfaceState.xcuserstate文件的问题的主要内容,如果未能解决你的问题,请参考以下文章
Git关于忽略Xcode工程中UserInterfaceState.xcuserstate文件的问题
Xcode 项目的 Git 忽略文件正在忽略 .swift 文件
Git 不会忽略 .gitignore 中的某些 Xcode 文件