Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
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
3  
"git fetch --tags" works too – John Erck Oct 26 '12 at 20:37

8 Answers

up vote 471 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>

share|improve this answer
5  
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 – None-da 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
81  
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
2  
I think this answer has saved me at least twice now! – Julian Sep 22 '11 at 13:35
show 4 more comments

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.

share|improve this answer
1  
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

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
share|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
Yes you lose version control but the time git archive saves compared to git clone is ABSOLUTELY UNBELIEVABLE! +1 – MarcH Mar 21 at 11:28

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.

share|improve this answer
6  
Until you reach v1.0.10, and then bad things happen :) – lOranger Mar 22 '12 at 7:37

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.

share|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
git clone http://git.abc.net/git/abc.git -b my_abc

Will clone the repo and leave you on the tag you are interested in.

share|improve this answer
5  
This only works for branches, not tags. – Mark Theunissen Jun 21 '12 at 20:36

Working off of Peter Johnson's answer, I created a nice little alias for myself:

alias gcolt="git checkout \`git tag | sort -V | tail -1\`"

aka 'git checkout latest tag'.

This relies on the GNU version of sort, which appropriately handles situations like the one lOranger pointed out:

v1.0.1
...
v1.0.9
v1.0.10

If you're on a mac, brew install coreutils and then call gsort instead.

share|improve this answer

I do this is via the github API:

curl -H "Authorization: token %(access_token)s" -sL -o /tmp/repo.tar.gz "http://api.github.com/repos/%(organisation)s/%(repo)s/tarball/%(tag)s" ;\
tar xfz /tmp/repo.tar.gz -C /tmp/repo --strip-components=1 ; \
share|improve this answer
This works for branches and tags, but not head of master which needs a tag created against it. Imho quite elegant way to get minimally sized version. – J0hnG4lt Apr 8 at 14:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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