diff --git a/git/rebasing-from-other-branches.md b/git/rebasing-from-other-branches.md new file mode 100644 index 0000000..bdad4af --- /dev/null +++ b/git/rebasing-from-other-branches.md @@ -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 +```