Exclude a file/directory from SVN in Xcode with SCM

前端 未结 2 1126
礼貌的吻别
礼貌的吻别 2021-02-10 14:59

I would like to exclude a directory from my SVN (I\'m using Xcode\'s built in SCM). It\'s not checked in but I\'m just tired of unselecting it from checkin.

Most of my S

2条回答
  •  渐次进展
    2021-02-10 15:45

    VocC is on the money, but don't we also want to ignore the pbxuser files and mode1v3 files?

    I would change the svn ps svn:ignore build . step for this:

    svn propset svn:ignore "*.mode1v3
    *.pbxuser
    bin" .
    

提交回复
热议问题