How to create a tag in GitHub Repository
In this tutorial, we are going to learn about how to create tags in a GitHub repository using the git command line.
Creating tags
To create a tag in GitHub we need to run the git tag
command followed by the name of your tag.
git tag <my-tag-name>
This above command will create the local git tag
Now, we need to push our tag to the remote GitHub repository by using the below command.
git push <my-tag-name>