-
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
Jake Soenneker
committed
Dec 25, 2023
1 parent
2dbb2a5
commit b65be5f
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 @@ | ||
# Contributing to Soenneker.Utils.AsyncSingleton | ||
|
||
We're excited that you're interested in contributing. Before you get started, please take a moment to read through this guide to understand how you can contribute to the project. | ||
|
||
## How to Contribute | ||
|
||
1. **Create an Issue** | ||
- If you have a new feature idea, a bug report, or any other improvement suggestion, start by creating an issue on the [Issues](https://github.com/soenneker/soenneker.utils.asyncsingleton/issues) page. | ||
- Clearly describe the problem or enhancement you're proposing and provide as much detail as possible. | ||
|
||
2. **Fork the Repository** | ||
- If you want to work on a feature or bug fix, fork the repository to your GitHub account. Click the "Fork" button at the top right corner of the repository. | ||
|
||
3. **Clone the Repository** | ||
- Clone the repository to your local machine using the following command: | ||
``` | ||
git clone https://github.com/soenneker/soenneker.utils.asyncsingleton.git | ||
``` | ||
4. **Create a Branch** | ||
- Create a new branch for your contribution. Use a descriptive name that reflects the purpose of your changes. | ||
``` | ||
git checkout -b your-feature-branch | ||
``` | ||
5. **Make Changes** | ||
- Implement your changes or add new features. Be sure to follow the coding conventions and guidelines of the project. | ||
6. **Test Your Changes** | ||
- Test your changes thoroughly to ensure that they work as expected. | ||
7. **Commit Changes** | ||
- Commit your changes with a clear and concise commit message. | ||
``` | ||
git commit -m "Brief description of your changes" | ||
``` | ||
8. **Push Changes** | ||
- Push your changes to your forked repository on GitHub. | ||
``` | ||
git push origin your-feature-branch | ||
``` | ||
9. **Create a Pull Request (PR)** | ||
- Go to the [Pull Requests](https://github.com/soenneker/soenneker.utils.asyncsingleton/pulls) page of the original repository. | ||
- Click on "New Pull Request." | ||
- Select your forked repository and the branch with your changes. | ||
- Provide a clear title and description for your pull request. | ||
- Click "Create Pull Request." | ||
10. **Code Review** | ||
- Your pull request will be reviewed by the maintainers. Be responsive to any feedback and make necessary changes. | ||
11. **Merge** | ||
- Once your pull request is approved, it will be merged into the main branch. | ||
Thank you for contributing to Soenneker.Utils.AsyncSingleton! |