TIL: Rebasing from other branches

This commit is contained in:
Asocia 2021-06-29 16:28:34 +03:00
parent cfb6a695a5
commit e3efe57c18

View File

@ -0,0 +1,8 @@
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:
```
git checkout master
git pull
git checkout wip
git rebase master
```