You can run these steps via git-bash
-
Checking out master branch
git checkout master
-
Tagging master branch to the version you are going to release
git tag relese-vX.Y.Z
-
Show the tagged version
git tag
In case tagging wrong, you can delete tag with git tag -d release-vX.Y.Z
-
Push the tagged branch to origin
git push origin --tags