Tags

From Gcube Wiki
Revision as of 14:55, 29 May 2019 by Manuele.simi (Talk | contribs) (Created page with "== Creating Tags == Git supports two types of tags: ''lightweight'' and ''annotated''. In gCube we use annotated tag to mark a specific point in the repository’s history....")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Creating Tags

Git supports two types of tags: lightweight and annotated. In gCube we use annotated tag to mark a specific point in the repository’s history.

Annotated tags are stored as full objects in the Git database. They’re checksummed; contain the tagger name, email, and date; have a tagging message.

Tags can be created anytime in the project's history.

git tag -a v1.4 -m "my comment"

TBP