Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
First of all, thank you so much for this. It was by far the most in-depth and thorough explanation of how to push a Create-React-App to my Github and the only documentation that actually explained it well. Thank-you, thank-you, thank-you.
I have added an explanation of things that I was actually confused with when I went through it, hoping these additions will clear up any confusion for the next person.
line 46: adds a link to explain what the difference between a user and a project file are.
line 125: The use of a "+" is not immediately clear that the "+" sign should not actually be added to the package.json file.
line 145: added a hard return. Without the hard return, the
gh-pages -b master -d build
line gets split into two lines. I read it asgh-pages -b master -d
and didn't see thebuild
since it was on the next line and kept getting build error messages until I went back and re-read it several times.line 173 and 174: explanation of where to find the URL path for the project name and a screenshot to show them where.