Skip to content

Home

Rebase onto another branch

Rebases the current branch onto another branch.

git checkout <branch>
git rebase <base-branch>

# Examples
git checkout patch-1
git rebase master
# `patch-1` is rebased onto `master`

git checkout patch-2
git fetch origin # Fetch latest remote branches
git rebase origin/master
# `patch-2` is rebased onto the latest remote `master`

More like this

Start typing a keyphrase to see matching snippets.