Saurabh
Saurabh

Reputation: 22873

What files should SVN ignore when doing iPhone development?

I just started using SVN for iPhone development, but there are lot of problems. When I commit the changes, I also commit lot of unwanted files. Can anyone tell me what files I should ignore?

BTW: I am using the cornerstone subversion client . I know I can add file extensions to ignore in preferences; but I just need to know which files I should ignore.

Upvotes: 4

Views: 2820

Answers (3)

Nick Weaver
Nick Weaver

Reputation: 47241

I ignore these files in many projects, also .svn as I am using git:

.DS_Store
*.swp
*~.nib
build/
*.pbxuser
*.perspective
*.perspectivev3
*.project.xcworkspace
*.xcuserdata
*.mode1v3
*.mode2v3

Upvotes: 4

Michaël
Michaël

Reputation: 6734

First, you must ignore the build folder.

Upvotes: 0

Jilouc
Jilouc

Reputation: 12714

In my projects, I ignore the following items:

  • the entire build folder
  • *.mode1v3 and *.pbxuser on the xcodeproj package because they are developer dependent. (That's for XCode 3.x. It could have changed with the new XCode 4, I can't say for the moment)

Upvotes: 1

Related Questions