We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Tags

We're going to wrap this course up on an easy one: tags.

A tag is a name linked to a commit that doesn't move between commits, unlike a branch. Tags can be created and deleted, but not modified.

How to Tag

To list all current tags:

git tag

To create a tag on the current commit:

git tag -a "tag name" -m "tag message"

Assignment

MegaCorp™ is getting ready to release a new version of their enterprise software!

Run and submit the CLI tests.