mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-16 19:39:24 +00:00
Add note about rebasing
This commit is contained in:
parent
b9cac95249
commit
5f6546f775
1 changed files with 12 additions and 0 deletions
12
notes/git/rebase-onto.md
Normal file
12
notes/git/rebase-onto.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: Rebase commits done on the wrong branch
|
||||
tags:
|
||||
- Git
|
||||
link: https://git-scm.com/book/en/v2/Git-Branching-Rebasing#_more_interesting_rebases
|
||||
---
|
||||
|
||||
```sh
|
||||
git rebase --onto master server client
|
||||
```
|
||||
|
||||
> Take the `client` branch, figure out the patches since it diverged from the `server` branch, and replay these patches in the client branch as if it was based directly off the `master` branch instead.
|
Loading…
Reference in a new issue