lab 18 Remove the oops tag

Goals

Removing tag oops 01

The oops tag has served its purpose. Let’s remove it and allow the commits it referenced to be garbage collected.

Execute:

git tag -d oops
git hist --all

Output:

$ git tag -d oops
Deleted tag 'oops' (was 16e777e)
$ git hist --all
* dc44f2e 2013-10-06 | Added a comment (HEAD, v1, master) [Ismail Dhorat]
* 5ec54fd 2013-10-06 | Added a default value (v1-beta) [Ismail Dhorat]
* e606a20 2013-10-06 | Using ARGV [Ismail Dhorat]
* 5d95e74 2013-10-06 | First Commit [Ismail Dhorat]

The oops tag is no longer listed in the repository.

Table of Contents