Reputation: 303
Pretty simple, this has happened and I want to remove the tag from all of them easily. Any way to do so?
Only asking as this looks terrible and unpresentable for when I release my project. Thanks :)
Upvotes: 2
Views: 2993
Reputation: 111
In addition to the response above, it's important that for a commit to be "Verified" it must be signed by all committers.
So, if you make a signed commit, which is then reviewed and modified by another person, that commit now becomes Unverified, because it was modified after you made the commit.
Lastly, if you delete an associated commit from Github (such as discarding commits), the commit will also be marked as "unverified"
Upvotes: 0
Reputation: 59923
GitHub displays the unverified
label next to signed commits whose signature can't be verified. It might be due to an expired GPG key or because the key is associated to a different email address than the one recorded in the commits' metadata.
To get rid of that label you'll have to either:
Note that the third alternative involves rewriting history and all that it entails.
Upvotes: 5