culTest

    One of the 24 questions in this topic

    How much do you know about Git & GitHub: History Engineering and Automation?

    What does the git merge --no-ff command do?

    Answers

    It prevents the merge from failing.
    It forces the creation of a merge commit even if a fast-forward would be possible.Correct
    It deletes the branch after the merge.
    It does nothing.

    It is useful for preserving historical evidence that a feature branch existed.