-
Notifications
You must be signed in to change notification settings - Fork 1
Create Version Tags with Git
basst314 edited this page Feb 12, 2017
·
1 revision
Recent commits can be easily tagged via the GitHub Website. In case the commit is older, this cannot be done via the website. In this case, use the git command line interface to create a tag/release:
git tag -a v0.1.0 9fceb02 -m "Message here"
where 9fceb02 would be the specific commit hash.
git push --tags origin master
The Tag should appear on the github website, where it can be edited accordingly.