为什么不能将远程存储库克隆到另一台计算机上?

时间:2019-04-16 03:17:47

标签: git

我正在尝试使用笔记本电脑复制最初放在github上的远程存储库,现在我想在台式机上使用它。我是git&github的新手,并不了解其中的大部分内容。但是我要做的第一件事是在桌面上创建文件夹。使用git bash进入该文件夹,然后进行git clone和URL。这就是我得到的。

Marian@Marian-PC MINGW64 ~/Desktop/codeProjects/kaneConcrete
$ git clone https://github.com/spabsa/Kane-Concrete-Construction.git 2
Cloning into ‘Kane-Concrete-Construction’…
remote: Enumerating objects: 24, done.
remote: Counting objects: 100% (24/24), done.
remote: Compressing objects: 100% (19/19), done.
error: RPC failed; curl 56 SSL read: error:1408F10B:SSL routines:SSL3_GET_RECORD :wrong version number, errno 0
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: unpack-objects failed

有人可以给我关于发生的情况以及如何解决的简化解释吗?谢谢:)

2 个答案:

答案 0 :(得分:0)

确保您拥有latest Git version installed,然后再次从常规CMD(不是Git bash)尝试git克隆,并将简化路径设置为:

set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%

(首先键入where git,以了解Git的安装位置,然后按照指示设置PATH)

查看问题(openssl版本太旧)是否仍然存在。

答案 1 :(得分:0)

  1. 检查您的git版本?更新到最新。
  2. 检查您的网络连接速度?
  3. 检查您的本地代理?更改为https_proxy的http网址。
  4. 检查您的ssl版本,使用TLS代替SSL。