-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] Add yarn install instructions in CONTRIBUTING.md (#18970)
- Loading branch information
1 parent
c6f734f
commit 862f224
Showing
1 changed file
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ When in doubt, keep your Pull Requests small. To give a Pull Request the best ch | |
|
||
1. Fork the repository. | ||
|
||
2. Clone the fork to your local machine and add upstream remote | ||
2. Clone the fork to your local machine and add upstream remote: | ||
|
||
```sh | ||
git clone [email protected]:<yourname>/material-ui.git | ||
|
@@ -46,19 +46,25 @@ git checkout master | |
git pull upstream master | ||
``` | ||
|
||
4. Create a new topic branch: | ||
4. Install the dependencies: | ||
|
||
```sh | ||
git checkout -b my-topic-branch | ||
yarn install | ||
``` | ||
|
||
5. Make changes, commit and push to your fork: | ||
5. Create a new topic branch: | ||
|
||
```sh | ||
git checkout -b my-topic-branch | ||
```` | ||
|
||
6. Make changes, commit and push to your fork: | ||
|
||
```sh | ||
git push -u | ||
``` | ||
|
||
6. Go to [the repository](https://github.com/mui-org/material-ui) and make a Pull Request. | ||
7. Go to [the repository](https://github.com/mui-org/material-ui) and make a Pull Request. | ||
|
||
The core team is monitoring for Pull Requests. We will review your Pull Request and either merge it, request changes to it, or close it with an explanation. | ||
|
||
|