18. Removing the oops tag
Goals
- Removing the oops tag (cleaning up)
01 Removal of the oops tag
Oops tag has performed it’s function. Let us remove that tag and permit the garbage collector to delete referenced commit.
Run:
git tag -d oops git hist --all
Result:
$ git tag -d oops Deleted tag 'oops' (was 45fa96b) $ git hist --all * fa3c141 2011-03-09 | Added HTML header (HEAD, v1, master) [Alexander Shvets] * 8c32287 2011-03-09 | Added standard HTML page tags (v1-beta) [Alexander Shvets] * 43628f7 2011-03-09 | Added h1 tag [Alexander Shvets] * 911e8c9 2011-03-09 | First Commit [Alexander Shvets]
Oops tag will no longer appear in the repository.