I have a list of tags in my project, listed e.g. as follows:
(develop)$ git tag
v2.0.0
v2.0.1
I am able to find the branch that the first tag belongs to, but not so for the second one;
/home/pkaramol/Workspace/gitlab/myproject
(develop)$ git branch --contains tags/v2.0.0
* develop
/home/pkaramol/Workspace/gitlab/myproject
(develop)$ git branch --contains tags/v2.0.1
How is it possible that a tag exists but does not belong to a branch?