Search code examples
xcodemacosgitxcode4

Using Git for an OSX application


I'm working on an OSX application (using xcode) and all the versionning stuff is managed with git. I'm asking because I'm a bit new at this (not git, but osx applications) : which files should be commited and which shouldn't?

I'm not sure what to do with the .xcodeproj and all theses folders...

Thanks!


Solution

  • Within the .xcodeproj directory you just want to keep project.pbxproj under version control. The other files in that directory are all user-specific - project.pbxproj contains all the important stuff.

    Also you probably don't want the build directory under version control.