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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ This repo contains the source code and documentation powering [reactjs.org](http
9
9
1. Git
10
10
1. Node: install version 8.4 or greater
11
11
1. Yarn: `npm i -g yarn` to install it globally via NPM
12
-
1. A clone of the [reactjs.org repo](https://github.com/facebook/reactjs.org) on your local machine
12
+
1. A clone of the [reactjs.org repo](https://github.com/reactjs/reactjs.org) on your local machine
13
13
1. A fork of the repo (for any contributions)
14
14
15
15
### Installation
@@ -26,7 +26,7 @@ This repo contains the source code and documentation powering [reactjs.org](http
26
26
27
27
### Create a branch
28
28
29
-
1.`git checkout master` from any folder in your local react repository
29
+
1.`git checkout master` from any folder in your local `reactjs.org` repository
30
30
1.`git pull origin master` to ensure you have the latest main code
31
31
1.`git checkout -b the-name-of-my-branch` (replacing `the-name-of-my-branch` with a suitable name) to create a branch
32
32
@@ -47,10 +47,10 @@ This repo contains the source code and documentation powering [reactjs.org](http
47
47
48
48
1.`git add -A && git commit -m "My message"` (replacing `My message` with a commit message, such as `Fixed header logo on Android`) to stage and commit your changes
49
49
1.`git push my-fork-name the-name-of-my-branch`
50
-
1. Go to the [reactjs.org repo](https://github.com/facebook/reactjs.org) and you should see recently pushed branches.
50
+
1. Go to the [reactjs.org repo](https://github.com/reactjs/reactjs.org) and you should see recently pushed branches.
51
51
1. Follow GitHub's instructions.
52
52
1. If possible include screenshots of visual changes. A Netlify build will also be automatically created once you make your PR so other people can see your change.
Copy file name to clipboardExpand all lines: content/docs/codebase-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ The [fbjs repository](https://github.com/facebook/fbjs) exists because React sha
66
66
After cloning the [React repository](https://github.com/facebook/react), you will see a few top-level folders in it:
67
67
68
68
*[`src`](https://github.com/facebook/react/tree/master/src) is the source code of React. **If your change is related to the code, `src` is where you'll spend most of your time.**
69
-
*[`docs`](https://github.com/facebook/react/tree/master/docs) is the React documentation website. When you change APIs, make sure to update the relevant Markdown files.
69
+
*[`docs`](https://github.com/reactjs/reactjs.org/tree/master/content) is the React documentation website. When you change APIs, make sure to update the relevant Markdown files.
70
70
*[`fixtures`](https://github.com/facebook/react/tree/master/fixtures) contains a few small React test applications for contributors.
71
71
*[`packages`](https://github.com/facebook/react/tree/master/packages) contains metadata (such as `package.json`) for all packages in the React repository. Nevertheless, their source code is still located inside [`src`](https://github.com/facebook/react/tree/master/src).
72
72
*`build` is the build output of React. It is not in the repository but it will appear in your React clone after you [build it](/docs/how-to-contribute.html#development-workflow) for the first time.
0 commit comments