culTest

    One of the 25 questions in this topic

    How much do you know about Git & GitHub: Branches and Collaboration?

    What is the fundamental difference between git merge and git rebase?

    Answers

    There is no difference.
    Merge creates a new merge commit, while rebase moves your changes to the end of the other branch to keep a linear history.Correct
    Merge is faster than rebase.
    Rebase only works on GitHub.

    Rebase is used to keep a cleaner history with fewer merge commits.