culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to fetch changes from a remote repository?

    Answers

    git pullCorrect
    git fetch
    git download
    git get

    The git pull command is used to fetch changes from a remote repository and automatically integrate them into the current branch. It is equivalent to running git fetch followed by git merge.