Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8383ecf

Browse files
docs(CONTRIBUTING): add link to github-pr-helper
1 parent eed2333 commit 8383ecf

File tree

1 file changed

+30
-10
lines changed

1 file changed

+30
-10
lines changed

CONTRIBUTING.md

+30-10
Original file line numberDiff line numberDiff line change
@@ -103,19 +103,38 @@ That's it! Thank you for your contribution!
103103
When the patch is reviewed and merged, you can safely delete your branch and pull the changes
104104
from the main (upstream) repository:
105105
106-
```shell
107-
# Delete the remote branch on Github:
108-
git push origin --delete my-fix-branch
106+
* Delete the remote branch on Github:
109107
110-
# Check out the master branch:
111-
git checkout master -f
108+
```shell
109+
git push origin --delete my-fix-branch
110+
```
112111
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)
115137
116-
# Update your master with the latest upstream version:
117-
git pull --ff upstream master
118-
```
119138
## Coding Rules
120139
To ensure consistency throughout the source code, keep these rules in mind as you are working:
121140
@@ -224,3 +243,4 @@ You can find out more detailed information about contributing in the
224243
[individual-cla]: http://code.google.com/legal/individual-cla-v1.0.html
225244
[corporate-cla]: http://code.google.com/legal/corporate-cla-v1.0.html
226245
[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

Comments
 (0)