in Xcode SCM, how to ignore some runtime files while comitting to SVN?
in Xcode SCM, how to ignore some runtime files wh开发者_运维知识库ile comitting to SVN?
vi ~/.subversion/config find global-ignores in the config file, add the ignoring list below:
global-ignores = *~.nib *.so *.pbxuser *.mode .perspective *.o *.lo .la ## .*.rej .rej .~ ~ .# .DS_Store
find enable-auto-props, change into enable-auto-props = yes in [auto-props] Section, add
.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
精彩评论