I just add a commit and pushed it to my master branche
1. did git add [files]
2. did git commit -m "with message"
3. did git tag -a v2.0 -m "with message"
4. pushed to master
5. commit done
6. went to bitbucket website look under tags and no tags are shown.
What did I do wrong ?
You will have to explicitly push the tags.
git push origin v2.0
or
git push origin --tags
The latter will be useful when you have more than one tag to be pushed to remote.
You did nothing wrong. It has some issue with cache and cookies, clear it and You will be fine :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please check the stackoverflow post.
https://stackoverflow.com/questions/61627867/pushed-tag-is-not-coming-up-on-bitbucket
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.