@@ -103,19 +103,38 @@ That's it! Thank you for your contribution!
103
103
When the patch is reviewed and merged, you can safely delete your branch and pull the changes
104
104
from the main (upstream) repository:
105
105
106
- ```shell
107
- # Delete the remote branch on Github:
108
- git push origin --delete my-fix-branch
106
+ * Delete the remote branch on Github:
109
107
110
- # Check out the master branch:
111
- git checkout master -f
108
+ ```shell
109
+ git push origin --delete my-fix-branch
110
+ ```
112
111
113
- # Delete the local branch:
114
- git branch -D my-fix-branch
112
+ * Check out the master branch:
113
+
114
+ ```shell
115
+ git checkout master -f
116
+ ```
117
+
118
+ * Delete the local branch:
119
+
120
+ ```shell
121
+ git branch -D my-fix-branch
122
+ ```
123
+
124
+ * Update your master with the latest upstream version:
125
+
126
+ ```shell
127
+ git pull --ff upstream master
128
+ ```
129
+
130
+ ### GitHub Pull Request Helper
131
+
132
+ We track Pull Requests by attaching labels and assigning to milestones. For some reason GitHub
133
+ does not provide a good UI for managing labels on Pull Requests (unlike Issues). We have developed
134
+ a simple Chrome Extension that enables you to view (and manage if you have permission) the labels
135
+ on Pull Requests. You can get the extension from the Chrome WebStore -
136
+ [GitHub PR Helper](github-pr-helper)
115
137
116
- # Update your master with the latest upstream version:
117
- git pull --ff upstream master
118
- ```
119
138
## Coding Rules
120
139
To ensure consistency throughout the source code, keep these rules in mind as you are working:
121
140
@@ -224,3 +243,4 @@ You can find out more detailed information about contributing in the
224
243
[individual-cla]: http://code.google.com/legal/individual-cla-v1.0.html
225
244
[corporate-cla]: http://code.google.com/legal/corporate-cla-v1.0.html
226
245
[commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#
246
+ [github-pr-helper]: https://chrome.google.com/webstore/detail/github-pr-helper/mokbklfnaddkkbolfldepnkfmanfhpen
0 commit comments