Skip to content

Latest commit

 

History

History
124 lines (93 loc) · 9.6 KB

CONTRIBUTING.md

File metadata and controls

124 lines (93 loc) · 9.6 KB

Contributing

Thank you for showing interest in this project! We appreciate and encourage any and all contributions to the project. However, do keep in mind that it takes some time to get responses on issues and reviews on PRs. Before contributing, have a look at the CODE of CONDUCT and try to comply with those guidelines.

If you are new to contributing to projects on GitHub, this project follows a certain pattern of development and contributing - github flow. You could learn more about how to use Github on Github Labs and through the Github docs

Please ensure all pull requests and contributions comply with the Developer Certificate of Origin.

Setting up the project

First, fork this repository to your own account. Then use git clone <forked-repo-url> to clone your forked repository down to your local machine (remember to get the URL for your repository - the fork, not the original repository). Use git remote add upstream <original-repo-url> to add the original repository as the upstream (this is helpful for keeping your fork up-to-date).

Feedback, Bug Reports, Issues - How to open issues?

If you have any feedback, bug reports, feature request or ideas, feel free to open an issue on the project's repository. We love issues! ;D Please try not to duplicate issues and always try to give enough context in the issues that you open. You could use some of the issues templates to make better structured issues with relevant labels.

Claiming an Issue

All of the issues on this repo are open to contributors! If you see an open issue you would like to work on, please comment on the issue so that you may get assigned to it.

NOTE: Assigned issues that have not had any activity in 2 weeks will be unassigned.

If an issue is already assigned, please look for another issue to contribute to, or open an issue that you could work on and adds value to the project. We use labels to help categorise issues:

  • good first issue - These issues require minimal familiarity with our codebase. Please reserve these for first-time contributors.
  • help wanted - These issues are open to any contributors.
  • staff only - These issues are locked to project maintainers/collaborators. Pull requests on these issues will not be accepted from outside contributors.

Working on your issue

This project follows a certain development and contribution pattern(github-flow). If you have any confusion at any step in the process, refer to the Github docs. Feel free to comment on your assigned issue if you have any questions, doubts or need any help. (Do note that it might take some time to get help on the issues. It is highly suggested that you ask for help on EddieHub's Everyone Helps Everyone forum or freeCodeCamp's forum if you would prefer a quicker help response)

Syncing your fork with the project

Before starting any work, it is highly recommended that you ensure that your forked version of the repo is up to date. If you set the upstream as mentioned in Setting Up The Project, run these commands in your terminal (with the terminal pointed at the root directory of your local files):

  • Switch to the main branch:
    git checkout main
  • Get the current state of the original repo, without pulling down the changes to your local machine:
    git fetch upstream
  • Reset the state of your local files to match the current state of the original repo:
    git reset --hard upstream/main
  • Force the changes to your forked repo on github (thus making it match the original):
    git push -f

NOTE: Before you do the above, keep in mind that you will lose any changes you are currently working on. Do this with care.

If you are working on small changes directly on Github's UI, you could also consider using the Fetch Upstream button on Github's UI

Creating a new branch

Before making code changes, it would be best if you create a new branch and make changes in that branch. It's always a good idea to avoid committing changes directly to your main branch - this keeps it clean and avoids errors when updating (above). You could use this command to create and switch to a new branch -

git checkout -b <branchname> 

(Alternatively, you could also make a branch on github's UI and use git fetch and git checkout <branch-name> to switch to the created branch)

Branch names should follow a convention of type/issue/description where:

  • type is the nature of the changes (eg. feat for a new feature, or docs for documentation update). This should match the scope of the related issue.
  • issue is the number for the related issue you're addressing.
  • description is a brief description of your changes, such as update-contribs for updating the contributing guidelines.

Example - docs/3/update=contribs, when working on docs to update contributors for issue #3

After this, you could start working on your code :D

Commit Message Guidelines

Now you are free to work on your code! When you are satisfied with your changes, you can commit them with git commit -s -m "message", where:

  • -s flag signs the commit, to verify the connection with your GitHub account.
  • -m flag sets up the commit message.
  • message is the commit message: a brief (50 character max) message describing what the commit changes.

While writing the commit message, please try to be brief (if you want to add more context, you can add a description by adding another -m "some description" tag to the command) and try to write messages in present tense (like docs: add link to coc, instead of docs: added link to coc)

We prefer to follow a certain commit message styling format in order to make the commits easily readable by people as well as automation. You could refer to Conventional Commits specification for more information about the format.

All commit messages should follow this format- <type>(optional scope): <description> (The scope can be skipped, in order to make the commit message more succint) Examples-

docs: update project links
feat: set up project
feat(deploy): deployment config
fix: fix website crash bug

Type - The type could be one of the following:

  • fix: bug patches, typo and lint corrections
  • feat: introduce new features to the codebase
  • docs: for documentation and README/CONTRIBUTING changes
  • refactor: code change that refactors the code
  • chore: project config, maintainance

Submitting a Pull Request

Once you have all of your changes made and committed, you can push them to your forked repository! Use git push -u origin <branchname>, where:

  • -u tells git to set the upstream (see below)
  • origin tells git to push to your fork
  • branchname tells git to push to a branch - this MUST match the name of the branch you created locally.

NOTE: By setting the upstream, any subsequent push commands can be done with git push, and it will be pushed to the same branch.

Now you can open a pull request! You should see a quick option to do so appear at the top of your repository on GitHub. Click the "Pull Request" button to have GitHub automatically set up the pull request.

First, change the title of the pull request to match your branch name (following the conventions above!). Then, follow the instructions in the preset Pull Request template (make sure to complete any steps listed!).

Congratulations! You've submitted your first pull request! It will be reviewed as quickly as possible, so keep an eye out for comments, approvals, or requested changes.

Contributing in other ways

If you aren't comfortable with the codebase, or would like to contribute in other ways, we have options for that! We like and appreciate good contributions of any kind!

  • Documentation Updates: You are always welcome to update our documentation (like this file). If you see any typos or anything that can be clarified, go on ahead and open an issue and a Pull Request!
  • Feature Requests: If you have ideas for new features or improvements, feel free to open an issue!
  • Arts/graphics: If you would like to make artistic contributions to the project, feel free to open an issue or contact a maintainer regarding this. We like good graphics for repository banners, or graphics that can be featured in the application.
  • Bug Reports: We rely on our users to help identify bugs - if you see something wrong, please let us know with an issue!
  • Dropping reviews: If you want, you could also contribute by reviewing pull requests. (If you aren't familiar with the codebase, you could still drop reviews on documentation updates)
  • Legal Advice: If you are someone with legal knowledge/experience, you could contribute to the project by maybe going through the CODE OF CONDUCT and Privacy or Usage Policies. Help in this area is really really appreciated.