使用Git命令从GitHub上下载源码

1 确定源码地址

YouCompleteMe在GitHub中的主页如下图所示:

使用Git命令从GitHub上下载源码

由上图可见,网址为:https://github.com/Valloric/YouCompleteMe,可以通过这个网址来下载YouCompleteMe:

git clone https://github.com/Valloric/YouCompleteMe

也可以在用单引号将网址括住,效果是一样的:

git clone 'https://github.com/Valloric/YouCompleteMe'

也可以将https改为git,例如:

git clone git://github.com/Valloric/YouCompleteMe

git clone 'git://github.com/Valloric/YouCompleteMe'

通过上述命令可将YouCompleteMe源码下载到当前目录中。

2 递归下载子目录源码

通过上述命令下载的YouCompleteMe的third_party/ycmd目录是空的,但是通过上图的源码浏览查看ycmd目录并不是空的,因此说明上述命令并没有下载完整所有的源码。根据YouCompleteMe的安装提示进行安装时提示:

因此先进入YouCompleteMe目录,然后执行如下命令即可递归下载所有子目录的源码了。

git submodule update --init --recursive

或者,在下载的时候就指定--recursive参数:

git clone --recursive git://github.com/Valloric/YouCompleteMe 

GitHub 教程系列文章: 

通过GitHub创建个人技术博客图文详解 

GitHub 使用教程图文详解   

使用 GitHub / GitLab 的 Webhooks 进行网站自动化部署 

多个GitHub帐号的SSH key切换

如何在同一台电脑上使用两个GitHub账户

利用GitHub搭建个人Maven仓库 

一分钟认识GitHub

分享实用的GitHub 使用教程  

GitHub使用操作指南 

GitHub使用方法入门基础 

GitHub 的详细介绍请点这里
GitHub 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13272.html