DJ8X
DJ8X

Reputation: 395

Git tags don't show up as GitHub releases

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

Answers (1)

VonC
VonC

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

Related Questions