github上下载文件夹

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github上下载文件夹相关的知识,希望对你有一定的参考价值。

例:我现在要下载nginx这个项目

技术图片![]

有这种方法
1,浏览器上直接放在如下地址
https://minhaskamal.github.io/DownGit/#/home

技术图片

将要下载的项目连接贴上去,下载到本地计算机。这里可以找到连接地址。
技术图片

2,使用git工具下载
安装git工具
yum install git -y

选择一个空目录

[[email protected] test]# pwd
/test
[[email protected] test]# 

创建一个空的本地仓库

[[email protected] test]# git init
Initialized empty Git repository in /test/.git/
[[email protected] test]#

连接远程仓库GitHub

[[email protected] 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结尾

开启sparse checkout 模式

[[email protected] test]# git config core.sparsecheckout true
[[email protected] test]# 

拉取项目
[[email protected] test]# # git pull origin master

以上是关于github上下载文件夹的主要内容,如果未能解决你的问题,请参考以下文章

Linux使用svn在github上下载部分文件(单个文件夹)

github上下载的文件如何在本地运行

如何在github上下载单个文件夹?

如何把github上下载下来的maven源代码zip文件打包成可运行的jar文件

如何在github上下载单个文件夹?

从github上下载代码到本地