GitHub:克隆随机存储库

时间:2018-07-30 15:33:11

标签: git github

让我们采用以下存储库。 https://github.com/GoogleCloudPlatform/professional-services/tree/master/machine-learning/solutions/energy_price_forecasting

一个人通常如何在终端中克隆一个仓库?

我尝试了以下操作,都给出了错误。

git clone https://github.com/energy_price_forecasting.git
git clone https://github.com/GoogleCloudPlatform/professional-services/tree/master/machine-learning/solutions/energy_price_forecasting.git
  

forecasting.git
  克隆到“ energy_price_forecasting” ...
  远程:找不到
  致命:找不到存储库“ https://github.com/energy_price_forecasting.git/

     

克隆到“ energy_price_forecasting” ...
  致命:存储库'https://github.com/GoogleCloudPlatform/professional-services/tree/master/machine-learning/solutions/energy_price_forecasting.git/'
  找不到

1 个答案:

答案 0 :(得分:2)

只需克隆实际的存储库,而不是尝试克隆存储库的一部分

git clone https://github.com/GoogleCloudPlatform/professional-services.git

您无法使用git克隆单个文件/文件夹。如果您只想要仓库的某些部分,那么您唯一的选择是考虑从git下载单个文件,但这与克隆不同。