culTest

    One of the 24 questions in this topic

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

    What is the main visual difference in history between a merge and a rebase?

    Answers

    Rebase is slower.
    Merge keeps the branching structure, while rebase creates a linear timeline.Correct
    Merge deletes the original files.
    There is no visual difference.

    Rebase reapplies your commits one by one on top of the target branch tip, avoiding merge commits.