Reputation: 395
So... I have a Git repository on my desktop computer that is linked to a GitHub repository. When I do:
git tag -a -F C:\Users\Adam\AppData\Local\Temp\git-tag-message-4665532737910125701.txt v0.1 63f5
the tag doesn't show up as a release on the GitHub website. (Note: An IDE handles all of the Git->GitHub stuff for me) Do I have to "push" something after I make a tag?
Upvotes: 28
Views: 5883
Reputation: 1324417
Do I have to "push" something after I make a tag?
Yes:
git push --tags
(since GitHub releases are based on git tags)
Upvotes: 41