up vote 128 down vote favorite
42
share [g+] share [fb]

I'm trying to figure out how do download a particular tag of a git repository - it's one version behind the current version.

I saw there was a tag for the previous version on the git web page, with object name of something long hex number.

But the version name is "Tagged release 1.1.5" according the site.

I tried a command like this (with names changed):

git clone http://git.abc.net/git/abc.git my_abc

And I did get something - a directory, a bunch of subdirectories, etc.

If it's the whole repository, how do I get at the version I'm seeking? If not, how do I download that particular version?

link|improve this question

72% accept rate
I develop on a completely different repo then the production, so my production didn't know any tags when I tried to use git checkout. The solution was to use "git pull --tags" then use git checkout. – Jonathon Byrd Nov 19 '11 at 9:35
feedback

5 Answers

up vote 193 down vote accepted

git clone will give you the whole repository.

After the clone, you can list the tags with git tag -l and then checkout a specific tag: git checkout <tag_name>

link|improve this answer
1  
Yep. git is different to subversion in this respect. A svn tag basically copies the files to a new folder, so you can svn checkout a specific bunch of files, whereas git tags are simply pointers to specific revisions. – dbr Apr 27 '09 at 2:17
1  
Found the answer here:blog.stonean.com/2009/02/17/git-branch-from-a-tag – Maddy Feb 23 '10 at 13:05
2  
What if you have a branch and a tag that have the same name? If you just say "git checkout <name>" it says "warning: refname '<name>' is ambiguous. Switched to branch '<name>'" -- how do you tell it to switch to the tag instead? – MatrixFrog Nov 24 '10 at 18:35
16  
MatrixFrog, to avoid the ambiguity, run git checkout tags/<name>. Otherwise, Git assumes that you meant to retrieve branch <name>. – Derek Mahar Apr 4 '11 at 17:55
1  
I think this answer has saved me at least twice now! – Julian Sep 22 '11 at 13:35
show 3 more comments
feedback

I'm not a git expert, but I think this should work:

git clone http://git.abc.net/git/abc.git
git checkout my_abc OR git checkout -b new_branch my_abc

The second variation on the second line establishes a new branch based on the tag, which lets you avoid a 'detached HEAD'. (git-checkout manual)

Every git repo contains the entire revision history, so cloning the repo gives you access to the latest commit, plus everything that came before, including the tag you're looking for.

link|improve this answer
Thx. I needed to use git checkout -b b1.5.0 v1.5.0 when checking out a version within a 'gh-pages' branch to successfully push to Github Pages. This Gist I wrote up might help others re: branch/tag/submodules... gist.github.com/1064750 – Chris Jacob Jul 5 '11 at 17:15
feedback

You can use git archive to download a tar ball for a given tag or commit id:

git archive --format=tar --remote=[hostname]:[path to repo] [tag name] > tagged_version.tar
link|improve this answer
1  
This command does not work with submodules, see stackoverflow.com/questions/1591387/… – Zitrax Jan 13 '10 at 14:56
1  
But git archive also removes the version control, so you can't just do another git checkout to upgrade to the next tag. – pydave Apr 6 '11 at 21:37
feedback

If your tags are sortable using the linux 'sort' command, use this:

git tag | sort -n | tail -1

eg. if git tag returns:

v1.0.1
v1.0.2
v1.0.5
v1.0.4

git tag | sort -n | tail -1 will output:

v1.0.5

git tag | sort -n | tail -2 | head -1 will output:

v1.0.4

(because you asked for the second most recent tag)

to checkout the tag, first clone the repo, then type:

git checkout v1.0.4

..or whatever tag you need.

link|improve this answer
feedback

I checked the git checkout documentation, it revealed one interesting thing:

git checkout -b <new_branch_name> <start_point> , where the <start_point> is the name of a commit at which to start the new branch; Defaults to HEAD

So we can mention the tag name( as tag is nothing but a name of a commit) as, say:

>> git checkout -b 1.0.2_branch 1.0.2
later, modify some files
>> git push --tags

P.S: In Git, you can't update a tag directly(since tag is just a label to a commit), you need to checkout the same tag as a branch and then commit to it and then create a separate tag.

link|improve this answer
1  
Or if you don't expect to make any changes and you just want to look at what the code looked like at that tag, you can just checkout the tag without creating a branch. You'll get some text explaining that you're in "detached head" state, and you can always create the branch later if you want to. – MatrixFrog Nov 24 '10 at 18:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.