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.
To list all current tags:
git tag
To create a tag on the current commit:
git tag -a "tag name" -m "tag message"
MegaCorp™ is getting ready to release a new version of their enterprise software!
Run and submit the CLI tests.