git rebase
Reapply commits from one branch on top of another branch. Commonly used to "move" an entire branch to another base, creating copies of the commits in the new location.
More info →Options (2)
-i, --interactivebooleanStart an interactive rebase, which allows the commits to be reordered, omitted, combined, or modified
git rebase {{[-i|--interactive]}} {{target_base_branch_or_commit_hash}}-X, --strategy-optionbooleanAuto-resolve any conflicts by favoring the working branch version (`theirs` keyword has reversed meaning in this case)
git rebase {{[-X|--strategy-option]}} theirs {{branch_name}}Examples (8)
Rebase the current branch on top of another specified branch
git rebase new_base_branchStart an interactive rebase, which allows the commits to be reordered, omitted, combined, or modified
git rebase [-i|--interactive] target_base_branch_or_commit_hashContinue a rebase that was interrupted by a merge failure, after editing conflicting files
git rebase --continueContinue a rebase that was paused due to merge conflicts, by skipping the conflicted commit
git rebase --skipAbort a rebase in progress (e.g. if it is interrupted by a merge conflict)
git rebase --abortMove part of the current branch onto a new base, providing the old base to start from
git rebase --onto new_base old_baseReapply the last 5 commits in-place, stopping to allow them to be reordered, omitted, combined, or modified
git rebase [-i|--interactive] HEAD~5Auto-resolve any conflicts by favoring the working branch version (`theirs` keyword has reversed meaning in this case)
git rebase [-X|--strategy-option] theirs branch_name