Skip to main content

Usefull git commangs

Create annotated tag
# Crate new tag for version with comment
git tag -a v0.2 -m "Release v0.2 created"

# push tag to remote repo
git push --tags
Get last annotated tag
git describe --tags --abbrev=0