Xcode 5, Export Project to SVN repository

前端 未结 4 1422
醉酒成梦
醉酒成梦 2020-12-12 18:41

In previous version of Xcode there was a repository section in Organiser which is now missing in Xcode 5. How to export project to SVN in Xcode 5.

相关标签:
4条回答
  • 2020-12-12 19:02

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

    0 讨论(0)
  • 2020-12-12 19:03

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

    This is Check Out

    Select SVN from Recents or Repositories tab.

    Check out dialog

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

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

    0 讨论(0)
  • 2020-12-12 19:04

    please refer this.

    https://developer.apple.com/library/ios/recipes/xcode_help-accounts_preferences/articles/add_repository.html#//apple_ref/doc/uid/TP40013306-CH4

    and on click on setting btn you can import and export also.

    0 讨论(0)
  • 2020-12-12 19:11

    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.

    0 讨论(0)
提交回复
热议问题