From e5dc6e2bfc84353e3581a98b66ba7dfc03e22cc2 Mon Sep 17 00:00:00 2001 From: woothu <32914662+woothu@users.noreply.github.com> Date: Thu, 30 Jan 2020 12:55:55 +0100 Subject: [PATCH] chore: update contributing guide --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 630e302c..59805de7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -101,11 +101,11 @@ included in the project: 2. If you cloned a while ago, get the latest changes from upstream: ```bash - git checkout master - git pull upstream master + git checkout dev + git pull upstream dev ``` -3. Create a new topic branch (off the main project development branch) to +3. Create a new topic branch (off the development branch "dev") to contain your feature, change, or fix: ```bash @@ -121,7 +121,7 @@ included in the project: 5. Locally merge (or rebase) the upstream development branch into your topic branch: ```bash - git pull [--rebase] upstream master + git pull [--rebase] upstream dev ``` 6. Push your topic branch up to your fork: