culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to create a tag?

    Answers

    git create-tag
    git label
    git tagCorrect
    git mark

    The git tag command followed by a name is used to create a tag on the current commit. You can also specify a particular commit or create an annotated tag with git tag -a name -m "message".