XcodeAllowSVNManage projectsFileThe tutorial is the content to be introduced in this article.XcodeIt is no stranger to those who believe in it, so we will enter the topic.XcodeIt is the quickest way for developers to build Mac OS X applications and the simplest way to use the technology of the new Apple Computer Company.SVNIs a version control tool. This article mainly describesSVNYou can only use the following steps to perform the search:
1. Create the project in XCODE.
2. Setup subversion in XCODE and select the subversion repository for this project.
3. Use Xcode SCM> Repository and click on the IMPORT icon. This will move the local copy to the subversion repository.
5. Now delete your local copy (or move it to another location just in case ).
6. CHECKOUT the project from subversion (this will create the subversion. svn folders ,...).
7. Reselect the subversion repository for this project.
However, some files do not need to be uploaded, so you can use the command line to filter them out: they are also collected through the network. This has not been verified. Try again...
Edit ~ /. Subversion/config file
1. Find a global-ignores line, remove the comment, and edit it
- global-ignores = build *~.nib *.so *.pbxuser *.mode *.perspective*
Some files in the Xcode project file are text files and you need to tell SVN, because SVN can better manage text files and who knows who to use)
2. Find enable-auto-props = yes and remove the comments. declare the following text file in [auto-props] Section:
- *.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
Summary:XcodeAllowSVNManage projectsFileThe content of this tutorial has been introduced. I hope this article will help you!