git tags
Git Tag: A Tutorial for Tagging Releases in Git - DEV Community
#ligthweight tag
git tag v1.0.0
# full
git tag -a v1.0.0 -m "Releasing version v1.0.0"
Tags don’t get pushed automatically. For this,
git push origin v1.0.0
Nel mezzo del deserto posso dire tutto quello che voglio.
comments powered by Disqus