From charlesreid1

Revision as of 08:40, 14 April 2018 by Admin (talk | contribs) (Created page with "To create a lightweight tag in a git repo: <pre> $ git tag v0.1 </pre> If you want to add more information, you can create an annotated tag: <pre> $ git tag -a v0.1 -m 'rai...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

To create a lightweight tag in a git repo:

$ git tag v0.1

If you want to add more information, you can create an annotated tag:

$ git tag -a v0.1 -m 'rainbow mind machine v0.1'