views:

298

answers:

1

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

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

+10  A: 
build/
.DS_Store
**/*.pbxuser
*.mode2v3
*.mode1v3
**/*.perspectivev*

This is a good start.

updated with Dave's suggestions.

kubi
+1 I usually do `**/*.pbxuser`, and I also add `**/*.perspectivev*`
Dave DeLong