什么是“标准”? iPhone (Xcode) 项目的 .gitignore 内容?

发布于 2024-09-06 06:30:44 字数 75 浏览 4 评论 0原文

iPhone (Xcode) 项目的 .gitignore 文件的“标准”内容是什么?

PS:不确定这是否需要是CW。

What is considered the 'standard' content of .gitignore file for an iPhone (Xcode) project?

PS: not sure if this needs to be a CW.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怪我闹别瞎闹 2024-09-13 06:30:44
build/
.DS_Store
**/*.pbxuser
*.mode2v3
*.mode1v3
**/*.perspectivev*

这是一个好的开始。

根据戴夫的建议进行了更新。

build/
.DS_Store
**/*.pbxuser
*.mode2v3
*.mode1v3
**/*.perspectivev*

This is a good start.

updated with Dave's suggestions.

戴着白色围巾的女孩 2024-09-13 06:30:44

您还应该在 xcode 4.2 中排除 xcworkspacexcuserdata。所以这里是一个完整的列表,对于 iOS 项目应该忽略它

# Exclude the build directory
build/*

# Exclude temp nibs and swap files
*~.nib
*.swp

# Exclude OS X folder attributes
.DS_Store

# Exclude user-specific XCode 3 and 4 files
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
*.xcworkspace
xcuserdata

You should also exclude xcworkspace and xcuserdata in xcode 4.2. So here is a complete list which one should ignore for iOS projects

# Exclude the build directory
build/*

# Exclude temp nibs and swap files
*~.nib
*.swp

# Exclude OS X folder attributes
.DS_Store

# Exclude user-specific XCode 3 and 4 files
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
*.xcworkspace
xcuserdata
守望孤独 2024-09-13 06:30:44

来自 GitHub gitignore 项目,截至今天:

# 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/

来源:https:/ /github.com/github/gitignore/blob/master/Objective-C.gitignore

From the GitHub gitignore project, as of today:

# 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/

Source: https://github.com/github/gitignore/blob/master/Objective-C.gitignore

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文