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: CONTRIBUTING.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,10 +75,10 @@ If you would like for the GitHub UI to link the commit to your account and award
75
75
76
76
#### Step 2 : Branch
77
77
78
-
As a best practice to keep your development environment as organized as possible, create local branches to work within. When you create a branch, do it directly off of the upstream **develop** branch.
78
+
As a best practice to keep your development environment as organized as possible, create local branches to work within. When you create a branch, do it directly off of the upstream **main** branch.
79
79
80
80
```
81
-
git checkout upstream develop
81
+
git checkout upstream main
82
82
git checkout -b my-branch
83
83
```
84
84
@@ -178,13 +178,13 @@ Note that multiple commits often will get squashed when they are landed.
178
178
As a best practice, once you have committed your changes, it is a good idea to use `git rebase` (not `git merge`) to synchronize your work with the main repository.
179
179
180
180
```
181
-
git checkout upstream develop
182
-
git pull upstream develop
181
+
git checkout upstream main
182
+
git pull upstream main
183
183
git checkout my-branch
184
-
git rebase develop
184
+
git rebase main
185
185
```
186
186
187
-
This ensures that your working branch has the latest changes from the develop branch of the origin repository. Moreover, your Pull Request will be easier to merge.
187
+
This ensures that your working branch has the latest changes from the main branch of the origin repository. Moreover, your Pull Request will be easier to merge.
188
188
189
189
#### Step 6 : Test
190
190
@@ -230,10 +230,10 @@ git push origin my-branch
230
230
If a git conflict arises, it is necessary to synchronize your branch with other changes that have landed upstream by using git `rebase`:
0 commit comments