Good Example of How to Tag and Cut a New Release in Git
Good Example of How to Tag and Cut a New Release in Git
git checkout main
git pull
git tag -a v0.15.2 -m "Release v0.15.2"
git push origin v0.15.2
git checkout main
git pull
git tag -a v0.15.2 -m "Release v0.15.2"
git push origin v0.15.2