我试图在Windows上使用git bash克隆https://github.com/tensorflow/models.git,克隆后我得到以下信息:
Cloning into 'models'...
remote: Enumerating objects: 81, done.
remote: Counting objects: 100% (81/81), done.
remote: Compressing objects: 100% (62/62), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
使用git bash和github桌面尝试克隆
答案 0 :(得分:0)
我刚刚尝试并成功克隆了GitHub存储库(下载507.69 MiB ...)。
再试一次,使用:
也就是说:
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%
如果问题仍然存在,则可能是网络问题,例如seen here(您可以尝试使用https://github-debug.com/获得更多跟踪信息)。
设置新路径后,我忘了重新启动PC,我想那是原因:它现在可以工作了。