

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Still calibrating
click for more info
Not enough gems
Cost: 6 gems
1: Tags
incomplete
2: Semver
incomplete
3: Conventional Tags
incomplete
This lesson's interactive features are locked, please to keep using them
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.