2021-05-12 14:32:11
使用Git命令從GitHub上下載原始碼
本文以下載Vim的YouCompleteMe外掛原始碼為例進行說明如何使用Git從GitHub中下載原始碼,實驗環境為Ubuntu 16.04。
1 確定原始碼地址
YouCompleteMe在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建立個人技術部落格圖文詳解 http://www.linuxidc.com/Linux/2015-02/114121.htm
GitHub 使用教學圖文詳解 http://www.linuxidc.com/Linux/2014-09/106230.htm
使用 GitHub / GitLab 的 Webhooks 進行網站自動化部署 http://www.linuxidc.com/Linux/2016-06/131993.htm
多個GitHub帳號的SSH key切換 http://www.linuxidc.com/Linux/2016-05/131080.htm
如何在同一台電腦上使用兩個GitHub賬戶 http://www.linuxidc.com/Linux/2016-05/131079.htm
利用GitHub搭建個人Maven倉庫 http://www.linuxidc.com/Linux/2016-04/130197.htm
一分鐘認識GitHub http://www.linuxidc.com/Linux/2015-11/125089.htm
分享實用的GitHub 使用教學 http://www.linuxidc.com/Linux/2014-04/100556.htm
GitHub使用操作指南 http://www.linuxidc.com/Linux/2016-10/135782.htm
GitHub使用方法入門基礎 http://www.linuxidc.com/Linux/2017-05/144084.htm
相關文章