Xcode 6 的典型 .gitignore 应该包括什么?

另外有关 Xcode 5 中引入的 xccheckout 的信息,请参阅 here

最佳答案

1)

最简单的答案是我的看起来像这样:

# Xcode
.DS_Store
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
# Pods - for those of you who use CocoaPods
Pods

我相信这与 GitHub 默认为其所有存储库设置的 .gitignore 相同。

2)

另一个答案是有一个 website called "gitignore.io" ,它根据来自 https://github.com/github/gitignore 的 .gitignore 模板生成文件。

关于ios - Xcode 6 gitignore 文件应该包括什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18939421/

10-14 16:10