-1

我想git://git.openscada.org/org.openscada.utgard.git某个网站下载源代码,但只能通过 Git 下载。

我已经下载了一个 Git Bash。我的问题是如何下载这个源?

4

1 回答 1

3

确认您已在 CLI 上安装了 Git...

whereis git

你应该看到类似的东西/usr/bin/git

运行后,您可以使用...

git clone git://git.openscada.org/org.openscada.utgard.git

这应该使用源创建一个文件夹 ( org.openscada.utgard)。如果您希望它克隆到不同的文件夹,请将其名称作为第二个参数传递给git clone...

git clone git://git.openscada.org/org.openscada.utgard.git /path/to/folder

于 2012-08-09T00:01:28.120 回答