As mentioned in this SO question (with answers to Xcode SVN integration), you can still go with the "command line".
See How to ignore a directory with SVN?
svn propset svn:ignore dirname .
You can see in this blog post by Paul Solt an example of a new project managed by Xcode, but with the SVN ignore command
Make a project in Xcode , and then use the terminal and execute the commands. If you are familiar with SVN , check the documentation.
cd LOCAL_PROJECT_PATH svn mkdir SVN_REPOSITORY_LOCATION/PROJECT_NAME svn co SVN_REPOSITORY_LOCATION/PROJECT_NAME . svn add * svn revert --recursive build svn ps svn:ignore build . svn ci
Teams:
- Create a folder in your SVN repository.
- Then it checks the remote repository folder in the local project folder and adds all the project files.
- After adding the files, you will want to remove the assembly directory and ignore it from your SVN repository.
- Finally, itll commit the changes and your project is in the repository.
source share