Feedback

Chat Icon

Learn Git in a Day

Everything you need, nothing you don't

Mark the Milestones
68%

Tag a Commit After the Fact

You don't have to tag the latest commit. If you forgot to tag a release at the time, you can tag any commit by passing its hash. First, find the commit you want to tag:

git log --oneline

Then tag it by adding the commit hash at the end:

git tag -a v0.1  -m "Early version with only add and subtract"

Learn Git in a Day

Everything you need, nothing you don't

Enroll now to unlock all content and receive all future updates for free.