Creating git tag -
James Land - 28 Apr 2021
Create Git Tag
Create tag
git tag -a v1.0 -m "Eample of creating a git tag for version v1.0 with a comment"
Push a specific tag
git push origin v1.0
Push all your tags
git push origin --tags
James Land - 28 Apr 2021
git tag -a v1.0 -m "Eample of creating a git tag for version v1.0 with a comment"
git push origin v1.0
git push origin --tags