Skip to content

Commit 8e16845

Browse files
committed
chore: update contributing guide
1 parent 79d22d7 commit 8e16845

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Guidelines for bug reports:
3636

3737
1. **Use the GitHub issue search** — check if the issue has already been reported.
3838

39-
2. **Check if the issue has been fixed** — try to reproduce it using the latest `master` or development branch in the repository.
39+
2. **Check if the issue has been fixed** — try to reproduce it using the latest `master` or `dev` branch in the repository.
4040

4141
3. **Isolate the problem** — ideally create a [reduced test case](https://css-tricks.com/reduced-test-cases/) and a live example. [This JS Bin](http://jsbin.com/lefey/1/edit?html,output) is a helpful template.
4242

@@ -101,11 +101,11 @@ included in the project:
101101
2. If you cloned a while ago, get the latest changes from upstream:
102102

103103
```bash
104-
git checkout master
105-
git pull upstream master
104+
git checkout dev
105+
git pull upstream dev
106106
```
107107

108-
3. Create a new topic branch (off the main project development branch) to
108+
3. Create a new topic branch (off the development branch "dev") to
109109
contain your feature, change, or fix:
110110

111111
```bash
@@ -121,7 +121,7 @@ included in the project:
121121
5. Locally merge (or rebase) the upstream development branch into your topic branch:
122122

123123
```bash
124-
git pull [--rebase] upstream master
124+
git pull [--rebase] upstream dev
125125
```
126126

127127
6. Push your topic branch up to your fork:
@@ -130,7 +130,7 @@ included in the project:
130130
git push origin <topic-branch-name>
131131
```
132132

133-
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description against the `master` branch.
133+
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description into the `dev` branch.
134134

135135
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to license your work under the terms of the [MIT License](LICENSE).
136136

0 commit comments

Comments
 (0)