Home > Software engineering >  How do I see who created the tag in Gerrit
How do I see who created the tag in Gerrit

Time:11-05

I have found too many tags in gerrit repo but didn't know who create them.I have tried clone repo to my workspace and used "git show TAG".It doesn't work.enter image description here

If the tag tag person adds the -a option then I can see who created the tag. How do I see who created the tag without adding the -a option

CodePudding user response:

There's no way to know who created a lightweight (non-annotated) tag, neither using Git nor using Gerrit.

If this is an issue to you, consider denying the access rights to create lightweight tags.

  • Related