-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# How to contribute | ||
|
||
:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: | ||
|
||
It's people like you that make open source such powerful. Following these guidelines helps keep the project | ||
maintainable, easy to contribute to, and more secure. Thank you for taking the | ||
time to follow this guide. | ||
|
||
## Where to start | ||
|
||
There are many ways to contribute. You can fix a bug, improve the documentation, | ||
submit bug reports and feature requests, or take a first shot at a feature you | ||
need for yourself. | ||
|
||
Pull requests are necessary for all contributions of code or documentation. | ||
|
||
## New to open source? | ||
|
||
If you're **new to open source** and not sure what a pull request is, welcome!! | ||
We're glad to have you! All of us once had a contribution to make and didn't | ||
know where to start. | ||
|
||
Even if you don't write code for your job, don't worry, the skills you learn | ||
during your first contribution to open source can be applied in so many ways, | ||
you'll wonder what you ever did before you had this knowledge. It's worth | ||
learning. | ||
|
||
[How To Contribute to Open Source](https://contributing.md/how-to-contribute-to-open-source/) | ||
|
||
## Fixing a typo, or a one or two line fix | ||
|
||
Many fixes require little effort or review, such as: | ||
|
||
> - Spelling / grammar, typos, white space and formatting changes | ||
> - Comment clean up | ||
> - Change logging messages or debugging output | ||
> These small changes can be made directly in GitHub if you like. | ||
Click the pencil icon in GitHub above the file to edit the file directly in | ||
GitHub. This will automatically create a fork and pull request with the change. | ||
See: | ||
[Make a small change with a Pull Request](https://www.freecodecamp.org/news/how-to-make-your-first-pull-request-on-github/) | ||
|
||
## Bug fixes and features | ||
|
||
For something that is bigger than a one or two line fix, go through the process | ||
of making a fork and pull request yourself: | ||
|
||
> 1. Create your own fork of the code | ||
> 2. Clone the fork locally | ||
> 3. Make the changes in your local clone | ||
> 4. Push the changes from local to your fork | ||
> 5. Create a pull request to pull the changes from your fork back into the | ||
> upstream repository | ||
> Please use clear commit messages so we can understand what each commit does. | ||
> We'll review every PR and might offer feedback or request changes before | ||
> merging. |