What SVN files to ignore when developing an iPhone?

I just started using SVN for iPhone development, but there are a lot of problems. When I make changes, I also commit a lot of junk files. Can someone tell me which files should I ignore?

BTW: I use a third-party disruptive client. I know that I can add file extensions to ignore in the settings; but I just need to know which files I should ignore.

+4
source share
3 answers

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

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

In my projects, I ignore the following elements:

  • whole build folder
  • *.mode1v3 and *.pbxuser in the xcodeproj package because they are developer dependent. (This is for Xcode 3.x. It could be changed with the new Xcode 4, I can’t say at the moment)
+1
source

First, you should ignore the build folder.

0
source

Source: https://habr.com/ru/post/1344164/


All Articles