-
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
25 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,25 @@ | ||
# Contributing to Easy Signature | ||
|
||
Thank you for your interest in contributing to Easy Signature. | ||
|
||
## How to Contribute | ||
|
||
1. Fork the repository on GitHub. | ||
2. Clone your forked repository locally. | ||
3. Create a new branch for your changes: | ||
```sh | ||
git checkout -b feature/your-feature-name | ||
|
||
4. Make your changes and improvements. | ||
5. Test your changes thoroughly. | ||
6. Commit your changes with descriptive commit messages: | ||
```sh | ||
git commit -m "Add your meaningful commit message here" | ||
7. Push your changes to your forked repository: | ||
```sh | ||
git push origin feature/your-feature-name | ||
8. Create a Pull Request (PR): | ||
* Go to the original repository and create a new PR from your forked repository's branch. | ||
* Provide a clear and descriptive title for your PR. | ||
* In the description, provide details about what your PR addresses and any relevant context. | ||
* Wait for reviewers to review your PR and address any feedback. |