HomeRecipesSnippets


git tags

Text

Category: git
Date: Jan. 28, 2025, 11:29 p.m. PST
Tags: tags

Create a tag

git tag 7.x-1.3

Push a tag

git push origin 7.x-1.3

Tag and share a release

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

git tag -d 12345
git push origin :refs/tags/12345