Git tags do not appear as GitHub releases

So ... I have a Git repository on my desktop computer that is linked to a GitHub repository. When I do this:

git tag -a -FC:\Users\Adam\AppData\Local\Temp\git-tag-message-4665532737910125701.txt v0.1 63f5 

the tag does not appear as a release on the GitHub website. (Note: the IDE handles all things Git -> GitHub for me). Do I need to push something after creating a tag?

+8
git github
source share
1 answer

Do I need to "click" something after creating a tag?

Yes:

 git push --tags 

(since github releases are based on git tags)

+10
source share

All Articles