Reputation: 14113
Everywhere I search, I get half the solution for exporting Xcode project on Subversion. And for Xcode6, I am not able to find any reliable link.
I have created an iOS project on Xcode6. And now I want to export it to Subversion. The server admin has created my credentials and I have them along with server url. He has created a blank repository on the server too. I have created Repository from Xcode -> Preferences -> Add Repository. But that's all. I am not able to proceed further.
How should I export the project from Xcode6 to SVN?
Upvotes: 5
Views: 4875
Reputation: 145
Once its Authenticated Or Validated Go to Source Control
And Here We Go
Your Code will start to upload on the validated repo.
Upvotes: 0
Reputation: 3297
The easiest way is probably to do this via the terminal.
cd path/to/project
)Use the svn import
command:
svn import -m "New Import" MyProject/ https://myserver.me.com/svn/trunk/MyProject
And finally checkout the project using
svn co https://myserver.me.com/svn/trunk/MyProject
Upvotes: 20