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 t
git tag
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.