fix: update contributing.md with correct branch to rebase with (v8/dev)

This commit is contained in:
Mike Masey
2019-04-02 20:09:03 +01:00
parent 06bee124ee
commit 9d4ecc1d41

View File

@@ -179,9 +179,9 @@ Then when you want to get the changes from the main repository:
```
git fetch upstream
git rebase upstream/dev-v8
git rebase upstream/v8/dev
```
In this command we're syncing with the `dev-v8` branch, but you can of course choose another one if needed.
In this command we're syncing with the `v8/dev` branch, but you can of course choose another one if needed.
(More info on how this works: [http://robots.thoughtbot.com/post/5133345960/keeping-a-git-fork-updated](http://robots.thoughtbot.com/post/5133345960/keeping-a-git-fork-updated))