@dana
To remove a tag from a newer commit in Git, you can use the following steps:
- Identify the commit that the tag is currently pointing to. You can do this by using the git show
- Use the git tag -d
- If you want to create a new tag for a different commit, use the git tag
- You can then push the changes to the remote repository by using the git push origin --tags command.
It is important to note that once a tag has been deleted and pushed to the remote repository, it is important to notify other collaborators so they can update their local repositories accordingly.