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

Since I created my repository it appears that the tags I have been creating are not pushed to the repository. When I do git tag on the local directory all the tags are present, but when I logon to the remote repository and do a git tag, only the first few show up.

What could the problem be?

share|improve this question
git push --follow-tags can now be useful, see my answer below – VonC Apr 23 at 8:44

5 Answers

up vote 20 down vote accepted

You could do this:

git push --tags
share|improve this answer
1  
I'm pretty sure that means that the HEAD refs won't get pushed, meaning that you ONLY push the tags. – Yar Oct 7 '12 at 21:01

In default git remote configuration you have to push tags explicitly (while they are fetched automatically together with commits they point to). You need to use

$ git push <remote> tag <tagname>

to push a single tag, or

$ git push <remote> --tags

to push all tags.

This is very much intended behaviour, to make pushing tags explicit. Pushing tags should be usually conscious choice.


Alternatively you can configure the remote you push to to always push all tags, e.g. put something like that in your .git/config:

[remote "publish"] # or whatever it is named
    url = ...
    push = +refs/heads/*:refs/heads/*
    push = +refs/tags/*:refs/tags/*

This means force push all heads (all branches) and all tags (if you don't want force pushing of heads, remove '+' prefix from refspec).

share|improve this answer
Doesn't this always do a 'force push' of all heads ? – Stefan Näwe Jun 7 '10 at 12:56
@Stefan: Yes it does. Updated. – Jakub NarÄ™bski Jun 7 '10 at 14:19
7  
"This is very much intended behaviour, to make pushing tags explicit. Pushing tags should be usually conscious choice." I don't understand the rationale. Can you elaborate on why it would be bad for Git to push tags automatically? – Kyralessa Aug 2 '11 at 18:28

What I usually do is :

[remote "publish"] # or whatever it is named
    url = ...
    push = :
    push = +refs/tags/*:refs/tags/*

Meaning it pushes every branch that's already there, plus tags. It does not force push, and it does not push branch that you didn't push manually.

share|improve this answer
Can I also put that in the global git config of my user? If yes, how? Thanks! :) – gucki Feb 8 at 9:34
It looks like you are forcing the tags, but not the branches. – Adrian Ratnapala Apr 29 at 6:36
Well, yes, and no, I wrote that, it will push new tags, it won't force push them, and it won't push branches that you haven't already pushed yourself. – mat Apr 29 at 9:31

Note that since git 1.8.3 (April 22d, 2013), you no longer have to do 2 commands to push branches, and then to push tags:

The new "--follow-tags" option tells "git push" to push relevant annotated tags when pushing branches out.

You can now try, when pushing new commits:

git push --follow-tags

That won't push all the local tags though, only the one referenced by commits which are pushed with the git push.

share|improve this answer

And if you want to force fetch all the tags, you may set it in the config by:

git config remote.origin.tagopt --tags

From the docs:

Setting this value to --no-tags disables automatic tag following when fetching from remote . Setting it to --tags will fetch every tag from remote , even if they are not reachable from remote branch heads. Passing these flags directly to git-fetch(1) can override this setting. See options --tags and --no-tags of git-fetch(1).

share|improve this answer

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.