### Create a tag ```bash git tag 7.x-1.3 ``` ### Push a tag ```bash git push origin 7.x-1.3 ``` ### Tag and share a release ```bash git tag -a release/1.0.0b1 -m "1.0.0b1 release" git push --tags git show-ref --tags 1.0.0b1 ``` ### Delete a tag ```bash git tag -d 12345 git push origin :refs/tags/12345 ```