8.3 KiB
Follow these guidelines to contribute to the codebase. This is highly recommended if you want to contribute regularly.
Ignoring these steps may soil your copy which makes the contributing, maintaining, and reviewing processes difficult.
Contributing to the Codebase
You can now make changes to files and commit your changes to your fork, which you can prepare by reading how to set up freecodecamp.
Follow these steps:
-
Validate that you are on the
mainbranch:git statusYou should get an output like this:
On branch main Your branch is up-to-date with 'origin/main'. nothing to commit, working directory cleanIf you got different message, then you aren't on main or your working directory isn't clean, resolve any outstanding files/commits and checkout
main:git checkout main -
Sync the latest changes from the freeCodeCamp upstream
mainbranch to yourmainfork branch:Warning
If you have any outstanding pull requests that you made from the
mainbranch of your fork, you will lose them at the end of this step.You should ensure your pull request is merged by a moderator before performing this step. To avoid this scenario, you should always work on a branch other than the
main.This step will sync the latest changes from the main repository of freeCodeCamp.
Update your copy of the freeCodeCamp upstream repository:
git fetch upstreamHard reset your main branch with the freeCodeCamp main:
git reset --hard upstream/mainPush your main branch to your origin to have a clean history on your fork on GitHub:
git push origin main --forceYou can validate your current main matches the upstream/main by performing a diff:
git diff upstream/mainThe resulting output should be empty. This process is important, because you will be rebase your branch on top of the latest
upstream/mainas often as possible to avoid conflicts later. -
Create a fresh new branch:
Working on a separate branch for each issue helps you keep your work copy clean. You should never work on the
main. This will soil your copy of freeCodeCamp and you may have to start over with a fresh clone or fork.Check that you are on
mainas explained previously, and branch off from there:git checkout -b fix/update-guide-for-xyzYour branch name should start with a
fix/,feat/,docs/, etc. Avoid using issue numbers in branches. Keep them short, meaningful and unique.Some examples of good branch names are:
fix/update-challenges-for-react fix/update-guide-for-html-css fix/platform-bug-sign-in-issues feat/add-guide-article-for-javascript translate/add-spanish-basic-html -
Edit pages and work on code in your favorite text editor.
-
Once you are happy with the changes you should optionally run freeCodeCamp to preview the changes.
-
Make sure you fix any errors and check the formatting of your changes.
-
Check and confirm the files you are updating:
git statusThis should show a list of
unstagedfiles that you have edited.On branch feat/documentation Your branch is up to date with 'upstream/feat/documentation'. Changes were not staged for commit: (use "git add/rm <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in the working directory) modified: CONTRIBUTING.md modified: docs/README.md modified: docs/how-to-setup-freecodecamp-locally.md modified: docs/how-to-work-on-guide-articles.md ... -
Stage the changes and make a commit:
In this step, you should only mark files that you have edited or added yourself. You can perform a reset and resolve files that you did not intend to change if needed.
git add path/to/my/changed/file.extOr you can add all the
unstagedfiles to the staging area:git add .Only the files that were moved to the staging area will be added when you make a commit.
git statusOutput:
On branch feat/documentation Your branch is up to date with 'upstream/feat/documentation'. Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: CONTRIBUTING.md modified: docs/README.md modified: docs/how-to-setup-freecodecamp-locally.md modified: docs/how-to-work-on-guide-articles.mdNow, you can commit your changes with a short message like so:
git commit -m "fix: my short commit message"Some examples:
fix: add test for JavaScript - for loop step feat: add link for article for alexa skillsMake a conventional commit message. This is a good practice as a developer, and you will be following standard practices.
Some examples of conventional commit messages are:
fix: improve HTML step fix: fix build scripts for Travis-CI feat: add link to JavaScript hoisting article docs: update contributing guidelinesKeep these short, not more than 50 characters. You can always add additional information in the description of the commit message.
This does not take any more time than an unconventional message like 'update file' or 'add index.md'
You can learn more about why you should use conventional commits here.
-
If you realize that you need to edit a file or update the commit message after making a commit you can do so after editing the files with:
git commit --amendThis will open up a default text editor like
nanoorviwhere you can edit the commit message title and add/edit the description. -
Next, you can push your changes to your fork:
git push origin branch/name-here
Proposing a Pull Request (PR)
After you've committed your changes, check here for how to open a Pull Request.
Quick commands reference
A quick reference to the commands that you will need when working.
| command | description |
|---|---|
pnpm test |
Run all JS tests in the system, including client, server, lint and challenge tests. |
pnpm run test-client |
Run the client test suite. |
pnpm run test-client -u |
Run the client test suite, updating the Jest snapshots that are out of sync. |
pnpm run test:curriculum |
Run the curriculum test suite. |
FCC_BLOCK='Basic HTML and HTML5' pnpm run test:curriculum |
Test a specific Block. |
FCC_SUPERBLOCK='responsive-web-design' pnpm run test:curriculum |
Test a specific SuperBlock. |
pnpm run test-curriculum-full-output |
Run the curriculum test suite, without bailing after the first error |
pnpm run test-server |
Run the server test suite. |
pnpm run e2e |
Run the Cypress end to end tests. |
pnpm run clean |
Uninstalls all dependencies and cleans up caches. |
pnpm run storybook |
Starts Storybook for component library development. |