-
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
1 parent
e4cf56e
commit 86a8881
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 @@ | ||
# Contributing to Gatling-Distributed-Performance-Testing | ||
|
||
Thank you for your interest in contributing to **Gatling-Distributed-Performance-Testing**! Your contributions help improve the project and make it more useful for everyone. | ||
|
||
## How to Contribute | ||
|
||
1. **Fork the repository**: Click the "Fork" button at the top right of this page to create your own copy of the repository. | ||
2. **Clone your fork**: Clone your forked repository to your local machine. | ||
```bash | ||
git clone https://github.com/your-username/Gatling-Distributed-Performance-Testing.git | ||
``` | ||
3. **Create a new branch**: Create a branch for your changes. | ||
```bash | ||
git checkout -b my-new-branch | ||
``` | ||
4. **Make your changes**: Implement the changes or features you'd like to add. | ||
5. **Commit your changes**: Write a clear and concise commit message. | ||
```bash | ||
git commit -am 'Add [description of changes]' | ||
``` | ||
6. **Push to your branch**: | ||
```bash | ||
git push origin my-new-branch | ||
``` | ||
7. **Submit a pull request**: Go to the original repository on GitHub and open a pull request from your branch. | ||
|
||
## Reporting Issues | ||
|
||
If you encounter any bugs or have suggestions for improvements, please [open an issue](https://github.com/besessener/Gatling-Distributed-Performance-Testing/issues) on the repository. Provide as much detail as possible. | ||
|
||
--- | ||
|
||
Thank you again for contributing to Gatling-Distributed-Performance-Testing! |