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: .github/CONTRIBUTING.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@
3
3
Please take a moment to review this document in order to make the contribution
4
4
process easy and effective for everyone involved.
5
5
6
+
*Please submit one PR per question*
7
+
6
8
Following these guidelines helps to communicate that you respect the time of
7
9
the developers managing and developing this open source project. In return,
8
10
they should reciprocate that respect in addressing your issue or assessing
@@ -39,8 +41,8 @@ Adhering to the following process is the best way to get your work included in t
39
41
2. If you cloned a while ago, get the latest changes from upstream:
40
42
41
43
```bash
42
-
git checkout master
43
-
git pull upstream master
44
+
git checkout main
45
+
git pull upstream main
44
46
```
45
47
46
48
3. Create a new topic branch (off the main project development branch) to
@@ -53,7 +55,7 @@ Adhering to the following process is the best way to get your work included in t
53
55
4. Locally merge (or rebase) the upstream development branch into your topic branch:
54
56
55
57
```bash
56
-
git pull [--rebase] upstream master
58
+
git pull [--rebase] upstream main
57
59
```
58
60
59
61
5. Set-up the website
@@ -70,7 +72,7 @@ Our website is made with [Eleventy](https://11ty.io).
70
72
* If you are looking to edit infrastructure/templating files of the website and not sure how to, [check their docs](https://11ty.io/docs).
71
73
* If you are looking to change a question/translation file, just change the markdown file you want and the website will be updated once it is deployed.
72
74
73
-
6. Squash your commits down to a single one (we want to keep the master branch nice and clean)
75
+
6. Squash your commits down to a single one (we want to keep the main branch nice and clean)
0 commit comments