If there are several tags in a Git project, how can we check which of the marked tags to remove from all existing ones.
git tag display all tags and entries will be present in .git / refs / tags
say, for example: - today we synchronized the repository from the main repository and received tag 1, and we checked tag 1 and started working on it, after a few weeks we synchronized the content and checked the new tag.
Now, if I want to check the last status, which is the currently tagged tag, how can we do this?
source share