how to TAG a label to the checkin files (versioning concept) in Bitbucket?
I use git as VCS
if I run following commands in sequence
1.git tag -a v1.4 -m 'my version 1.4'
2.git push origin v1.5
where can I see Project tagged at V1.4 ?
Please help.
Thanks in advance!!!!!
Hi Rahul,
I assume the v1.5 in the second command is a typo? You would need to run git push origin v1.4 to push a tag named v1.4 to the server.
The Bitbucket page for a particular tag lives at:
https://bitbucket.org/<strong< a="">><user_name>/<repository_name>/commits/tag/<tag_name>
e.g.
https://bitbucket.org/atlassian/stash-suggest-reviewers/commits/tag/stash-suggest-reviewers-1.3
You can see a full list of tags by clicking on the Tags link from your repository page:
cheers,
Tim
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.