Annotated Tag - CI/CD Glossary Definition
An annotated tag is a full Git object storing a message, tagger name, date, and optional GPG signature. It is created with git tag -a v1.0 -m "release" and is the recommended form for releases.
An annotated tag is a full Git object storing a message, tagger name, date, and optional GPG signature. It is created with git tag -a v1.0 -m "release" and is the recommended form for releases.
An annotated tag is a full Git object storing a message, tagger name, date, and optional GPG signature. It is created with git tag -a v1.0 -m "release" and is the recommended form for releases.
Related guides
Git Tag - CI/CD Glossary DefinitionGit Tag: A git tag is a ref that points to a specific commit and, unlike a branch, does not move as new commi…
Signed Tag - CI/CD Glossary DefinitionSigned Tag: A signed tag (`git tag -s`) is an annotated tag carrying a cryptographic signature (GPG or SSH) t…
Git Ref - CI/CD Glossary DefinitionGit Ref: A git ref is a named pointer to a commit, stored under `.git/refs/` (or in `packed-refs`). Branches,…