mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-08 18:19:37 +01:00
9 lines
207 B
Markdown
9 lines
207 B
Markdown
Let's say you are in `wip` branch and you didn't push your changes to server yet. If you want to get all the changes from master:
|
|
|
|
```bash
|
|
git checkout master
|
|
git pull
|
|
git checkout wip
|
|
git rebase master
|
|
```
|