3

我对 GIT 很陌生,正在尝试从 eclipse.org git 存储库中查看一些示例项目。我刚刚安装了 EGit 插件,尝试在“从 Git 导入项目”菜单中输入正确的参数时遇到了障碍。

我希望查看的示例的位置位于此处。

http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tree/dsf

但是我不确定如何从此 url 创建正确的 URI、主机和存储库路径。

我希望能够探索该页面上列出的不同存储库(例如 org.eclipse.cdt.examples.dsf 文件夹)并签出这些项目,但是我只是不知道正确的 git url 是什么将会。

我来自 SVN,所以我确定我弄错了一些术语。我一直在关注本教程以使用 git:http ://wiki.eclipse.org/EGit/User_Guide#Cloning_Remote_Repositories

4

2 回答 2

2

Summary如果您在您提到的页面(http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tree/dsf )中单击“ ” ,您将获得一个页面(http://git .eclipse.org/c/cdt/org.eclipse.cdt.git/在底部(您需要向下滚动)显示克隆地址:

克隆

git://git.eclipse.org/gitroot/cdt/org.eclipse.cdt.git
ssh://git.eclipse.org/gitroot/cdt/org.eclipse.cdt.git
http://git.eclipse.org/gitroot/cdt/org.eclipse.cdt.git

您可以使用其中一个地址从 Egit 克隆:请参阅用户手册中的“克隆远程存储库”。

鸡蛋克隆

于 2012-05-15T06:33:29.330 回答
1

此页面包含来自 Eclipse 项目的有关克隆其 git 存储库的文档。它们显示了org.eclipse.cdt.git存储库的明确示例。你可以使用这个:

git clone git://git.eclipse.org/gitroot/cdt/org.eclipse.cdt.git

或这个:

git clone http://git.eclipse.org/gitroot/cdt/org.eclipse.cdt.git

我通常git://在 URL 可用时使用它们。他们曾经更快,但这可能不再是真的了。两者都应该工作得很好。

一般来说,看起来可以从 获取存储库,git://git.eclipse.org/gitroot/<PROJECT>/<REPO>您可以在其中正确替换<PROJECT><REPO>

于 2012-05-14T21:04:36.517 回答