i forgot to add a tag to my commit how can i add a new one code example
Example 1: git tag a previous commit
git tag -a v1.2 9fceb02 -m "Message here"
Example 2: git tag from commit
$ git tag <tag_name> HEAD (for the last commit)
git tag -a v1.2 9fceb02 -m "Message here"
$ git tag <tag_name> HEAD (for the last commit)