How to add tags in Bitbucket? I'm using Git

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

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


If you don't know where to look it will take ages to find the button in the gui.

In the bitbucket gui you can add a tag by browsing to commits. When you open the commit you want to tag there is a "tags" section in the top right of the page. Just below where the branch is displayed. If you click the + button you can tag your commit.

We are running the following version: Atlassian Bitbucket v4.8.3