culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to delete a tag?

    Answers

    git delete --tags <tag_name>
    git tag -d <tag_name>Correct
    git rm <tag_name>
    git erase <tag_name>

    git tag -d <tag_name> is used to delete a specific tag in Git.