lab 18 Remove the oops tag
Goals
- Remove the oops tag (housekeeping)
Removing tag oops
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 654f128) $ git hist --all * 59992ce 2019-06-27 | Added a comment (HEAD -> main, tag: v1) [Halle Bot] * 20a6c79 2019-06-27 | Added a default value (tag: v1-beta) [Halle Bot] * 6915d41 2019-06-27 | Using process.argv [Halle Bot] * 284070d 2019-06-27 | First Commit [Halle Bot]
The oops tag is no longer listed in the repository.