按标签获取所选项目版本

时间:2014-08-16 23:27:43

标签: git

我有本地存储库,它有两个版本:

$git tag
v1.0.0
v1.0.4
v.0.0中的

只是初始重新定位,有两个文件:

aa.txt - 内容:

这是我的第一个文件

bb.txt - 内容: 它是我的第二个文件

$git commit -m 'first commit'
$git push
(...)

下次添加新文件时,名称为cc.txt,其内容为:

下一个版本的文件

$git commit -m 'next commit'
$git push
(...)

现在我想获得拉动,但不是最新版本,只有版本: v1.0.0

是什么方式?

2 个答案:

答案 0 :(得分:1)

只需使用标记名称:

git checkout v1.0.0 

请参阅manual for checkout command

答案 1 :(得分:0)

一种方法是在网站上:

点击所选按钮: enter image description here

select tags, select your interested tag/version 以及 Download.zip

的下一步