例:我现在要下载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
原文地址:https://blog.51cto.com/7585527/2417332
时间: 2024-10-16 03:38:30