culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to add changes to the staging area?

    Answers

    git commit
    git stage
    git addCorrect
    git prepare

    The git add command is used to add changes to the staging area. This step is required before creating a commit because Git only includes changes that were added to the staging area.