@@ -128,15 +128,15 @@ Generally, we follow the style guidelines as suggested by the official language.
128
128
2 . If you cloned a while ago, get the latest changes from upstream:
129
129
130
130
``` bash
131
- git checkout < dev-branch >
132
- git pull upstream < dev-branch >
131
+ git checkout development
132
+ git pull upstream development
133
133
```
134
134
135
135
3 . Create a new topic branch (off the main project development branch) to
136
136
contain your feature, change, or fix:
137
137
138
138
``` bash
139
- git checkout -b < topic-branch-name>
139
+ git checkout -b < topic-branch-name> development
140
140
```
141
141
142
142
4 . Commit your changes in logical chunks. Please adhere to these [ git commit
@@ -152,7 +152,7 @@ Generally, we follow the style guidelines as suggested by the official language.
152
152
5 . Locally merge (or rebase) the upstream development branch into your topic branch:
153
153
154
154
``` bash
155
- git pull [--rebase] upstream master
155
+ git pull [--rebase] upstream development
156
156
```
157
157
158
158
6 . Push your topic branch up to your fork:
@@ -162,6 +162,6 @@ Generally, we follow the style guidelines as suggested by the official language.
162
162
```
163
163
164
164
7 . [ Open a Pull Request] ( https://help.github.com/articles/using-pull-requests/ )
165
- with a clear title and description against the ` master ` branch. All tests must be passing before we will review the PR.
165
+ with a clear title and description against the ` development ` branch. All tests must be passing before we will review the PR.
166
166
167
167
If you have any additional questions, please feel free to
[ email
] ( mailto:[email protected] ) us or create an issue in this repo.
0 commit comments