github上下載文件夾

例:我如今要下載nginx這個項目nginx

github上下載文件夾![]git

有這種方法
1,瀏覽器上直接放在以下地址
https://minhaskamal.github.io/DownGit/#/homegithub

github上下載文件夾

將要下載的項目鏈接貼上去,下載到本地計算機。這裏能夠找到鏈接地址。
github上下載文件夾docker

2,使用git工具下載
安裝git工具
yum install git -y瀏覽器

選擇一個空目錄app

[root@docker test]# pwd
/test
[root@docker test]#

建立一個空的本地倉庫ide

[root@docker test]# git init
Initialized empty Git repository in /test/.git/
[root@docker test]#

鏈接遠程倉庫GitHub工具

[root@docker test]# git remote add -f origin https://github.com/devops-apps/dockerfile.git
Updating origin
remote: Enumerating objects: 182, done.
remote: Counting objects: 100% (182/182), done.
remote: Compressing objects: 100% (153/153), done.
Receiving objects:   8% (16/182), 60.00 KiB | 25.00 KiB/s

注意,url地址是.git結尾url

開啓sparse checkout 模式spa

[root@docker test]# git config core.sparsecheckout true
[root@docker test]#

拉取項目
[root@docker test]# # git pull origin master

相關文章
相關標籤/搜索