lab 19 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 b7b217e) $ git hist --all * 1dee7f9 2022-10-24 | Tell user how many names they have (HEAD -> main, tag: v1) [Jim Weirich] * c72af6b 2022-10-24 | Rename variable to match its usage (tag: v1-beta) [Jim Weirich] * 8cdd2cd 2022-10-24 | Can specify multiple names [Jim Weirich] * 28fe396 2022-10-24 | Added a comment [Jim Weirich] * 15c7573 2022-10-24 | Added a default value [Jim Weirich] * 7d55044 2022-10-24 | Using ARGV [Jim Weirich] * 91b926e 2022-10-24 | First Commit [Jim Weirich]
The oops tag is no longer listed in the repository.