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?

link|improve this question

61% accept rate
feedback

4 Answers

In default git remote configuration you have to push tags explicitely (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).

link|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
1  
"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
feedback

You could do this:

git push --tags
link|improve this answer
feedback

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.

link|improve this answer
feedback

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).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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