美文网首页
2020-09-29 在 GitHub 下载某个程序 软包 的

2020-09-29 在 GitHub 下载某个程序 软包 的

作者: 半眼鱼 | 来源:发表于2020-09-29 15:16 被阅读0次

情况:github中某个项目已经更新到2.1.0版本,但是想要它的1.0.1版本怎么办?

方法一:

首先点击这个repository下的这个branch按钮

! image.png

点开了以后你会看到这个,然后点tags

image.png image.png

选择你想要下载的版本

image.png

最后点右边的Download ZIP ,或者复制特定版本的链接地址,在linux下使用命令行:sudo git clone 链接地址,进行下载

image.png

方法二:

git clone -b v1.0.1 https://github.com/named-data/mini-ndn/

-b表示取特定的分支,v1.0.1指定版本号,后面是github仓库的地址。

相关文章

网友评论

      本文标题:2020-09-29 在 GitHub 下载某个程序 软包 的

      本文链接:https://www.haomeiwen.com/subject/nxeeuktx.html