culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to perform a rebase?

    Answers

    git base
    git rebaseCorrect
    git move-base
    git change-base

    The git rebase command followed by the branch name is used to change the base of the current branch. For example, git rebase main moves the current branch commits so they start at the tip of main, creating a more linear history.