@adan
To add a tag to a commit that has already been pushed to both Git and Bitbucket, you can follow these steps:
- Identify the commit that you want to tag by using the git log command to view the commit history. Make note of the hash value of the commit.
- Create a new tag by using the git tag command followed by the tag name and the hash value of the commit. For example, to create a tag named "v1.0" for the commit with hash value "abc123":
- Push the newly created tag to the remote repository using the git push command with the --tags flag:
This will push the new tag to both Git and Bitbucket, associating it with the specified commit. The tag should now be visible in the repository's tag list.