You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Guidelines for bug reports:
36
36
37
37
1.**Use the GitHub issue search**— check if the issue has already been reported.
38
38
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.
40
40
41
41
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.
42
42
@@ -101,11 +101,11 @@ included in the project:
101
101
2. If you cloned a while ago, get the latest changes from upstream:
102
102
103
103
```bash
104
-
git checkout master
105
-
git pull upstream master
104
+
git checkout dev
105
+
git pull upstream dev
106
106
```
107
107
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
109
109
contain your feature, change, or fix:
110
110
111
111
```bash
@@ -121,7 +121,7 @@ included in the project:
121
121
5. Locally merge (or rebase) the upstream development branch into your topic branch:
122
122
123
123
```bash
124
-
git pull [--rebase] upstream master
124
+
git pull [--rebase] upstream dev
125
125
```
126
126
127
127
6. Push your topic branch up to your fork:
@@ -130,7 +130,7 @@ included in the project:
130
130
git push origin <topic-branch-name>
131
131
```
132
132
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.
134
134
135
135
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to license your work under the terms of the [MIT License](LICENSE).
0 commit comments