gpt4 book ai didi

ios - 如何在 Xcode 6 上设置 svn 存储库?

转载 作者:可可西里 更新时间:2023-11-01 04:15:27 27 4
gpt4 key购买 nike

我刚开始使用 Xcode 并尝试在远程 Windows 服务器上添加一个 Subversion 存储库。当我输入 Subversion 存储库的位置路径时,它显示以下错误消息:

错误信息 :

“主机无法访问。”

请问有人可以帮忙吗?谢谢。

最佳答案

即使没有 Xcode,设置 svn 源代码控制也总是很痛苦,而且 Apple 无法通过与 Xcode 的集成来帮助它。它从一个版本到另一个版本,最新的版本与版本 5 相似,因此在 Xcode 6 中也是如此。
这个解决方案的唯一问题是我们总是必须结合命令行和 Xcode GUI 步骤,但这是唯一可行的解​​决方案,所以我们将遵循这一点,但在可能的情况下使用 Xcode。

由于我做了几次但总是遇到各种问题,我决定做一个详细而清晰的最新描述。

The server side



即使您可以在您的机器上安装 svn 服务器,即使您单独工作,这也不是一个安全的解决方案。您可能会因硬盘故障或任何事故而失去多年的工作。所以把它放在单独的电脑上。
您需要在其上安装 svn 服务器并登录。您可以检查它,只需 ssh 进入您的服务器并在终端中使用该命令
which svn

如果你得到了一个版本号,你可能在该服务器上有一个带有事件存储库目录的 svn 并且你可以访问它。确切的位置取决于您的安装,但在我们的例子中,主存储库目录是: https://myserver.me.com/Library/Subversion/Repository/

您将在此目录下创建新的存储库,例如
https://myserver.me.com/Library/Subversion/Repository/MyNewApp

1. 创建一个新的存储库

登录到您的服务器(在我们的例子中是 myserver.me.com),然后打开终端实用程序并使用 svnadmin create 命令创建一个 Subversion 存储库。
例如,如果您想要一个名为 MyNewApp 的存储库在现有位置 /Library/Subversion/Repository/ ,您将输入命令:
svnadmin create /Library/Subversion/Repository/MyNewApp

这将创建存储库的主要结构。我们从服务器注销以避免任何问题,并且从现在开始不要直接使用它,只是从客户端使用。

The client side



2.创建文件夹结构

Note: Creating a hierarchy for your repository is optional. It's not needed in order to get svn to work properly, but if you're planning on keeping multiple projects under source control, then it's a good idea to get organized before you start importing those projects.



我们将在客户端准备文件夹结构,然后我们将使用名为“import”的 svn 命令将其传输到服务器。

1.首先在您的客户端上的任何位置创建一个新的临时文件夹 - 例如在您的桌面上 - 在我们的案例 MyNewApp 中使用 Finder 中的项目/存储库名称:
MyNewApp

然后使用确切名称在其中创建 3 个其他文件夹:
trunk
branches
tags

2.将文件夹结构导入svn服务器

使用终端实用程序登录到您的客户端并使用“cd”命令进入项目文件夹:
cd MyNewApp

Tip: The easiest way to get the full path to a folder into Terminal without risking typing errors is to first type the cd command and enter a space, and then drag the folder from the Finder and drop it at the end of the Terminal command line.



3.然后从终端使用 svn import 命令:
svn import . https://myserver.me.com/Library/Subversion/Repository/MyNewApp -m "Initial import of directories for MyNewApp project."

或者
svn import . svn+sshtunnel://yourLoginName@194.149.155.124/Library/Subversion/Repository/MyNewApp -m "Initial import of directories for MyNewApp project."

第二种是使用 ssh key 最安全的用法,其中 194.149.155.124 是服务器的 IP 地址。 svn+sshtunnel://意味着它使用 svn 和 sshtunnel 但它可以是任何其他的,这取决于登录机制,如 https://svn://这 ”。”在“导入”命令很重要之后,它意味着您所在的文件夹。

如果导入成功,您应该会看到如下内容:
Adding trunk 
Adding branches
Adding tags

Committed revision 1.

Note: This means this is the first committed version you loaded to the server to MyNewApp repository and it's under revision control by svn with a message just referencing what you did, and you could use what you like. Now that you have imported the directory structure for your project into the repository, you can now delete the MyNewApp1 directory on your computer that you just created. Doing this will help to prevent confusion later, when you import the real project.



3.将Xcode工程导入svn

使用终端导航到您的 Xcode 项目并再次确保您位于项目文件夹中
cd MyNewApp

然后再次使用以下 svn 命令:
svn import . https://myserver.me.com/Library/Subversion/Repository/MyNewApp/trunk/MyNewApp1  -m "Initial import of MyNewApp1 project."

或在您的计算机上的确切位置/Users/myUserName/Apps_Developing/myNewApp
svn import -m "New Import"  /Users/myUserName/Apps_Developing/myNewApp https://myserver.me.com/Library/Subversion/Repository/MyNewApp/trunk/MyNewApp1

如果导入成功,您应该会看到一长串添加的文件...

Note: This means that you import the MyNewApp1 (you could use any name) project to the trunk under svn. The trunk extension is important because of naming convention used by Xcode too. Again you can include any comment you want in the quotation marks, but be sure your comment will be meaningful to anyone using the repository.



4.在Xcode中添加仓库

现在启动 Xcode 并转到 Preferences --> Accounts并在左下角添加带有“+”的新存储库
+ Add Repository...

输入仓库地址
https://myserver.me.com/Library/Subversion/Repository/MyNewApp

Xcode screen for adding repository

Note: Don't use the trunk etc. you need the root of the repository here!



5. checkout 项目以创建工作副本

在 Xcode 中转到 Source Control --> Check Out...
输入主干(或分支或标签,如果您之前使用过它们)的存储库地址
https://myserver.me.com/Library/Subversion/Repository/MyNewApp/trunk

然后给出工作副本文件夹的名称及其位置

enter image description here

Note: trunk is important!!! Just type it after the root, if you miss it there will be trunk etc. folders in your folder! Directory name is as you like for example MyNewAppWorking...then choose location on your computer like Apps_Developing in our case.

关于ios - 如何在 Xcode 6 上设置 svn 存储库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29599023/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com