Files
30-seconds-of-code/snippets/rebase-onto-branch.md
Isabelle Viktoria Maciohsek ee28929328 Make expertise a field
2022-03-01 20:23:46 +02:00

29 lines
659 B
Markdown

---
title: Rebase onto another branch
tags: branch
expertise: advanced
firstSeen: 2021-04-05T11:19:54+03:00
lastUpdated: 2021-04-13T21:10:59+03:00
---
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>`.
```shell
git checkout <branch>
git rebase <base-branch>
```
```shell
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`
```