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
3. Synchronize your local `next` branch with the upstream one:
70
70
71
71
```sh
72
-
git checkout master
73
-
git pull upstream master
72
+
git checkout main
73
+
git pull upstream main
74
74
```
75
75
76
76
4. Install the dependencies with [yarn](https://yarnpkg.com) (npm isn't supported):
@@ -122,7 +122,7 @@ the results. If any of them fail, refer to [Checks and how to fix them](#checks-
122
122
123
123
Make sure the following is true:
124
124
125
-
- The branch is targeted at `master` for ongoing development. We do our best to keep `master` in good shape, with all tests passing. Code that lands in `master` must be compatible with the latest stable release. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip of `master` at any time.
125
+
- The branch is targeted at `main` for ongoing development. We do our best to keep `main` in good shape, with all tests passing. Code that lands in `main` must be compatible with the latest stable release. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip of `main` at any time.
126
126
- If a feature is being added:
127
127
- If the result was already achievable with the library, explain why this feature needs to be added.
128
128
- If this is a common use case, consider adding an example to the documentation.
0 commit comments