culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    What is a fast-forward merge in Git?

    Answers

    A faster merge for large repositories
    A merge where the target branch simply advances to the tip of the source branchCorrect
    A merge that skips the testing phase
    A merge that combines multiple branches at once

    A fast-forward merge occurs when the target branch has no additional commits since the source branch was created. In that case, Git simply moves the target branch pointer forward to the source branch tip, without creating a merge commit.