这就是Xcode项目的基本外观:
1 Appname/ 2 ├── Appname 3 │ ├── Base.lproj 4 │ │ ├── LaunchScreen.xib 5 │ │ └── Main.storyboard 6 │ ├── Images.xcassets 7 │ │ └── AppIcon.appiconset 8 │ │ └── Contents.Json 9 │ ├── AppDelegate.swift10 │ ├── Info.pList11 │ └── VIEwController.swift12 ├── Appname.xcodeproj13 │ ├── project.xcworkspace14 │ │ ├── xcuserdata15 │ │ │ └── user1.xcuserdatad16 │ │ │ └── UserInterfaceState.xcuserstate17 │ │ └── contents.xcworkspacedata18 │ ├── xcuserdata19 │ │ └── user1.xcuserdatad20 │ │ └── xcschemes21 │ │ ├── Appname.xcscheme22 │ │ └── xcschememanagement.pList23 │ └── project.pbxproj24 └── AppnameTests25 ├── AppnameTests.swift26 └── Info.pList
我倾向于只提交Appname /和AppnameTests /并排除Appname.xcodeproj /目录.建议的方法是什么?
解决方法 您将需要使用.gitignore文件来指定您不想在GitHub中存储哪些文件.Here is how to create the file和here’s what should go in that .gitignore
file.
以上是内存溢出为你收集整理的我应该在版本控制中存储Xcode项目的哪些文件?全部内容,希望文章能够帮你解决我应该在版本控制中存储Xcode项目的哪些文件?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)