Hi,
I have a workspace which may has multiple TAGs on a signle commit ID For example
commit #3 <--- TAG1 / TAG2/ TAG3
|
commit #2 <--- TAG4/ TAG5
|
commit #1 <--- TAG6/ TAG7
When I checked on commit-1 , I want to know the info of there are two TAGs (TAG 6/ TAG7) on current commit , but I can not find correct way to do that . I have tried:
A)git checkout commit #1
git tag --contains It will display TAG from TAG1~TAG7
B)git checkout commit #1
git describe --tags HEAD
It will display TAG6 only .
Can anybody let me know if I can get something like "TAG6/TAG7" from case above ?
Thanks, Shawn