culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    What is the difference between git pull and git fetch?

    Answers

    git pull fetches and merges changes, while git fetch only fetches themCorrect
    git pull saves changes, git fetch deletes them
    git pull is only used on branches, git fetch is not
    git pull is faster

    git pull fetches changes and merges them, while git fetch only downloads the changes without merging.