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:

  1. git tag -d oops
  2. git hist --all

Output:

  1. $ git tag -d oops
  2. Deleted tag 'oops' (was b083abb)
  3. $ git hist --all
  4. * 4254c94 2020-06-20 | Added a comment (HEAD -> master, tag: v1) [Jim Weirich]
  5. * c8b3af1 2020-06-20 | Added a default value (tag: v1-beta) [Jim Weirich]
  6. * 30c2cd4 2020-06-20 | Using ARGV [Jim Weirich]
  7. * 4445720 2020-06-20 | First Commit [Jim Weirich]

The oops tag is no longer listed in the repository.