Xcode 5, Export Project to SVN repository

旧城冷巷雨未停 提交于 2019-11-28 16:15:12

One way is using an svn client. The one which is obviously available is the command line svn client. So here's how I use it:

Our repository is: https://myserver.me.com/svn/ The repository is added to Xcode using Xcode->Preferences->Accounts.

  • Create a new project inside Xcode 5: $HOME/IOS/Projects/MyProject
  • Close the project or maybe even better close Xcode to avoid Xode interfering with svn. Really.
  • Open a terminal and change directory into the projects folder

    cd $HOME/IOS/Projects
    
  • Import the project into svn:

    svn import -m "New Import"  MyProject/ https://myserver.me.com/svn/trunk/MyProject
    
  • Checkout the project again to create a working copy

    svn co https://myserver/svn/trunk/MyProject MyProject
    
  • Re-open the project in Xcode and enjoy svn. The project is now part of the repo.

Select Source Control -> Check Out… This shows a “Check Out” dialog.

Select SVN from Recents or Repositories tab.

Now, select the directory in which to check out the project.

Click on “Check Out”. This updates the local project to remote SVN.

In XCode 5, you can add/view repositories at Xcode->Preferences->Accounts. You can also view/enter the repository at "Source Control"->"Check Out..."

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!