开发者

in Xcode SCM, how to ignore some runtime files while comitting to SVN?

开发者 https://www.devze.com 2023-02-10 01:46 出处:网络
in Xcode SCM, how to ignore some runtime files wh开发者_运维知识库ile comitting to SVN?vi ~/.subversion/config

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

0

精彩评论

暂无评论...
验证码 换一张
取 消