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?
Releases are based on Git tags, which mark a specific point in your repository's history. A tag date may be different than a release date since they can be created at different times. For more information about viewing your existing tags, see "Viewing your repository's releases and tags."
Viewing tags On GitHub.com, navigate to the main page of the repository. To the right of the list of files, click Releases. At the top of the Releases page, click Tags.
Do I have to "push" something after I make a tag?
Yes:
git push --tags
(since GitHub releases are based on git tags)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With