@@ -128,15 +128,15 @@ Generally, we follow the style guidelines as suggested by the official language.
1281282 . If you cloned a while ago, get the latest changes from upstream:
129129
130130 ``` bash
131- git checkout < dev-branch >
132- git pull upstream < dev-branch >
131+ git checkout development
132+ git pull upstream development
133133 ```
134134
1351353 . Create a new topic branch (off the main project development branch) to
136136 contain your feature, change, or fix:
137137
138138 ``` bash
139- git checkout -b < topic-branch-name>
139+ git checkout -b < topic-branch-name> development
140140 ```
141141
1421424 . 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.
1521525 . Locally merge (or rebase) the upstream development branch into your topic branch:
153153
154154 ``` bash
155- git pull [--rebase] upstream master
155+ git pull [--rebase] upstream development
156156 ```
157157
1581586 . Push your topic branch up to your fork:
@@ -162,6 +162,6 @@ Generally, we follow the style guidelines as suggested by the official language.
162162 ```
163163
1641647 . [ 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.
166166
167167If you have any additional questions, please feel free to [ email] ( mailto:dx@sendgrid.com ) us or create an issue in this repo.
0 commit comments