Reputation: 670
When programming an iOS application, there are many files Xcode deals with. I've noticed when I'm programming, the .xcodeproj
file is always being modified. What I'm wondering is whether or not the .xcodeproj
file should be ignored by Mercurial or not. Also, are there any other files that should be ignored by Mercurial?
Upvotes: 4
Views: 3219
Reputation: 47241
I usually ignore these files:
.DS_Store
*.swp
*~.nib
build/
*.pbxuser
*.perspective
*.perspectivev3
*.project.xcworkspace
*.xcuserdata
*.mode1v3
*.mode2v3
Upvotes: 7