Add rebase onto

This commit is contained in:
Isabelle Viktoria Maciohsek
2021-04-05 11:19:54 +03:00
parent bce632b28a
commit d540ba1e48

View File

@ -0,0 +1,25 @@
---
title: Rebase onto another branch
tags: branch,intermediate
---
Rebases the current branch onto another branch.
- Use `git checkout <branch>` to switch to the `<branch>` to be rebased.
- Use `git rebase <base-branch>` to rebase the current branch onto `<base-branch>`.
```sh
git checkout <branch>
git rebase <base-branch>
```
```sh
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`
```