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!
Within the
.xcodeprojdirectory you just want to keepproject.pbxprojunder version control. The other files in that directory are all user-specific –project.pbxprojcontains all the important stuff.Also you probably don’t want the
builddirectory under version control.