Technical Diary of a Dummy

Thoughts and Opinions that will live on after they have vacated my brain.

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
Tags:
git