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