Xcode 4 中的本地存储库

发布于 2024-10-25 11:45:49 字数 141 浏览 0 评论 0原文

我想将本地 svn 或 git 存储库添加到 Xcode 4 中的代码中。我找到了将其添加到新项目的帮助。但我如何将其添加到旧的呢?

我开始使用 Xcode 3 工作。最近我使用 Xcode 4。我想使用 Time Line。

请帮忙。

I want to add local svn or git repository to my code in Xcode 4. I found help for adding that to a new project. But how do I add that to an old one?

I started working in Xcode 3. Recently I'm using Xcode 4. I want to use Time Line.

Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝色星空 2024-11-01 11:45:49

我一直在寻找同一问题的答案。我所做的就是遵循“adymitruk”给出的步骤,除了从 XCode 的组织者窗口中选择“添加工作副本”选项并选择我在其中执行 git 命令的项目文件夹。

然后,我从“管理器”窗口中的“存储库”中双击 XCode 项目文件(扩展名为“.xcodeproj”的文件),并在 XCode 中打开我的项目。这似乎奏效了。

苹果的一些文档可以在以下位置找到:
http://developer.apple.com/library/mac/#documentation/IDEs/Conceptual/Xcode4TransitionGuide/SCM/SCM.html%23//apple_ref/doc/uid/TP40009984-CH7-SW10

请参阅以下文档的“将 Git 或 Subversion 版本控制添加到现有项目”部分,其中包括 Git 命令:
http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/SCM/SCM.html%23//apple_ref/doc/uid/TP40010215-CH7-SW9

I was looking for an answer to the same problem. What I have done is followed the steps given by 'adymitruk' and in addition to that from the organizer window of XCode I selected 'Add Working Copy' option and selected my project folder where I had executed the git commands.

Then I double clicked the XCode project file (file with extension '.xcodeproj') from the Repository in Organizer window and that opened my project in XCode. This seems to have worked.

Some documentation from apple can be found at:
http://developer.apple.com/library/mac/#documentation/IDEs/Conceptual/Xcode4TransitionGuide/SCM/SCM.html%23//apple_ref/doc/uid/TP40009984-CH7-SW10

Refer the following document's section "Add Git or Subversion Version Control to an Existing Project" which includes the Git commands:
http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/SCM/SCM.html%23//apple_ref/doc/uid/TP40010215-CH7-SW9

梦行七里 2024-11-01 11:45:49

对于 git,您需要的只是

git init

在 .gitignore 文件中添加要忽略的文件/目录的正确列表

git add .gitignore
git commit -m "initial init"

添加所有文件

git add . -A
git commit -m "initial code commit"

,然后在顶层

。 SVN 的步骤类似,但出于多种原因我不建议使用 SVN。

希望这有帮助

for git all you need is

git init

add a proper list of files/directories to ignore in the .gitignore file

git add .gitignore
git commit -m "initial init"

then add all the files

git add . -A
git commit -m "initial code commit"

at the top level.

Similar steps for SVN but I would not recommend using SVN for a number of reasons.

hope this helps

爱殇璃 2024-11-01 11:45:49

在寻找这个问题的答案时,我发现了这篇文章及其解决方案。

在终端 cd 到要放在版本控制

“git init”

“git add”下的项目文件夹。

重新启动 XCode,它应该检测到它处于 git 版本控制下,您可以使用内部工具

来源:我在此站点上找到它 http://www.lastrayofhope.com/2011/03/25/xcode4-adding-local-git-repository-to -a-xcode3-project/

Whilst looking for the answer to this question I found this post and it's solution.

In terminal cd to the project folder you want to put under versioning

"git init"

"git add ."

reboot XCode and it should detect that it is under git versioning and you can use the internal tools

Source: I found it on this site http://www.lastrayofhope.com/2011/03/25/xcode4-adding-local-git-repository-to-a-xcode3-project/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文