How can I add Git tags in Bitbucket? How can I add Git tags in Bitbucket? git git

How can I add Git tags in Bitbucket?


Did you click the button "Add All Tags Spec" in Push Wizard in Eclipse? If not, try it.Or if you have access to console version of git just perform:

git push --tags


You can also add the tag directly in the Bitbucket UI. Look at Commits, choose a specific commit and then in the details on the right side of the page, click the +-button after No tags.

enter image description here

https://confluence.atlassian.com/bitbucket/repository-tags-321860179.html


This documentation indicates that a tag could be created. Based on that information the following command was constructed:

git tag --annotate 1.0.0 --message "Initial version of some app"

and pushed by issuing:

git push origin 1.0.0

Once pushed, the tag could be downloaded by navigating to https://bitbucket.org/<username>/<project>/downloads?tab=tags