I'm getting this error when my environment changes for my project and the project file in my Xcode project has the 'M' flag:
Code:
"...projname.xcodeproj/myusername.pbxuser' is not under version control."
I understand about modifying the .subversion/config file to ignore .mode, .pbxuser and .perspective files. At first, I hacked the file to include these files in the global-ignores section. I enabled-auto-prop=yes and included these guys:
Code:
*.png = svn:mime-type=image/png
*.jpg = svn:mime-type=image/jpeg
*.mode* = svn:mime-type=text/X-xcode
*.pbxuser = svn:mime-type=text/X-xcode
*.perspective* = svn:mime-type=text/X-xcode
*.pbxproj = svn:mime-type=text/X-xcode
But since it's just me on my machine, I want to include *.pbxuser *.mode* and *.perspective* in my repository.
How can I do that now and avoid the error:
Code:
Error: 150000 (Can't find an entry) Description: Commit failed (details follow):
Error: 150000 (Can't find an entry) Description: '/Users/myusername/Documents/iPhone Development/Events/Events - scmworkingcopy/Events.xcodeproj/myusername.pbxuser' is not under version control.
Thanks!