-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
7b2e7e5
commit 7058872
Showing
1 changed file
with
33 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,33 @@ | ||
# How to contribute | ||
## Fork the project | ||
Fork the project to your GitHub account and clone it to your machine. | ||
|
||
## Create a branch for your contribution | ||
Create a branch with a meaningful name for your contribution. | ||
|
||
**Hints:** | ||
|
||
- say you want to add a new feature, then you can create a branch with the name feature/new-function. | ||
|
||
- say you want to fix a bug, then you can create a branch named bug/correct-bug. | ||
|
||
- say you want to improve the documentation, then you can create a branch named docs/improve-documentation. | ||
|
||
|
||
## Opening an issue | ||
You should normally open an issue in the following situations: | ||
|
||
- Report a bug that. | ||
- Discussing a high-level topic or idea (for example, community, vision or policies) | ||
- Propose a new feature or other project idea. | ||
|
||
> If you open an issue to report a bug, please include as much detail as possible. | ||
|
||
## Submitting a pull request | ||
You should normally submit a pull request in the following situations: | ||
|
||
- Fixing a bug. | ||
- Add a new feature. | ||
- Improve the documentation. | ||
|
||
> If you send a pull request to fix a bug, please include as much detail as possible. |