Git-克隆GitHub上的项目遇到问题

克隆GitHub上的项目遇到问题

如何clone一个项目

1、新建一个文件夹 test

cd C:/test

2、然后获取git仓库

git init

3、克隆GitHub上的项目

git clone https://github.com/billryan/resume.git

git clone [email protected]:billryan/resume.git

注意

Clone有两种方式:一种是Https方式,一种是SSH方式

用Https方式容易clone 超时报错:

fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: unpack-objects failed

用SSH方式则不会超时,所以当项目比较大的话,推荐使用SSH方式,奇怪的是push的时候不会报错。。。

具体做法:下载github项目的两种方法

你可能感兴趣的:(Git,GitHub,git,github)