[Xcode] Useful .gitignore Settings for iPhone App Development

Tadashi Shigeoka ·  Thu, November 15, 2012

Titled “Useful .gitignore settings for iPhone app development,” this is a massive copy-paste from Stack Overflow.

Git ignore file for Xcode projects - Stack Overflow

# Mac OS X
.DS_Store

# Xcode
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
*.xcuserstate
project.xcworkspace/
xcuserdata/

# Generated files
*.o
*.pyc

# Python modules
MANIFEST
dist/
build/

# Backup files
*.swp
*~.nib

# CocoaPods
Pods/*

That’s all from the Gemba!