Never made an open source contribution before? Wondering how contributions work in the in our project? Here's a quick rundown!
-
Find an issue that you are interested in addressing or a feature that you would like to add.
-
Fork the repository associated with the issue to your local GitHub organization. This means that you will have a copy of the repository
underyour-GitHub-username/repository-name.
-
Clone the repository to your local machine using:
git clone https://github.com/github-username/404-templates.git
-
Add the upstream remote:
git remote add upstream https://github.com/tsparticles/404-templates.git
-
Pull the latest changes from the main repository if you think your fork is behind:
git pull upstream main
-
Create a new branch and switch to it for your issue fix or feature using:
git switch -c branch-name-here
-
Make the appropriate changes for the issue you are trying to address or the feature that you want to add
-
Add the changes to the staging are and commit them to the branch you are working on
-
Push the changes to the remote repository using:
git push origin branch-name-here
-
Submit a pull request to the upstream repository
-
Title the pull request with a short description of the changes made
-
Wait for the pull request to be reviewed by a maintainer
-
Make changes to the pull request if the reviewing maintainer recommends them
-
Celebrate your success after your pull request is merged!