3
How do I delete a tag that was created locally in my git repository and has not yet been "pushada"
Example:
I created the tag v1.4.9
, but I noticed I was in the wrong branch before I did git push
. I want to remove the tag v1.4.9
that is locally created.
use the command line below, according to github
– jweblog