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 5a88372)
$ git hist --all
* 9efd33e 2013-10-06 | Added a comment (HEAD, v1, master) [Ismail Dhorat]
* 8b9a1c6 2013-10-06 | Added a default value (v1-beta) [Ismail Dhorat]
* f6f4d6b 2013-10-06 | Using ARGV [Ismail Dhorat]
* f98d857 2013-10-06 | First Commit [Ismail Dhorat]

The oops tag is no longer listed in the repository.

Table of Contents