Reputation: 2366
I also want to distribute it in the App Store. I want to put the XCode project and all source on github. Is there anything I should exclude from the repo to avoid exposing personally identifying information? For example the .pbxuser
file and such?
I expect not, but I'd like to be safe.
Upvotes: 1
Views: 234
Reputation: 11315
This is what I put in mine:
build
.DS_Store
*.perspectivev3
*.pbxuser
*.xcworkspacedata
*.xcuserstate
I don't think there is any personal information besides your user name and maybe some file paths.
Upvotes: 3