diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cc9eb76..e8038b0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,3 +9,26 @@ Thank you for considering contributing to PoSPro! We appreciate your interest in 2. **Clone your fork**: Use the following command to clone your forked repository: ```bash git clone https://github.com/your-username/PoSPro-.git + + Create a branch: Create a new branch for your changes: + +git checkout -b my-feature-branch +Make your changes: Implement your feature or bug fix. + +Test your changes: Make sure to test your changes thoroughly. + +Commit your changes: Write a clear commit message describing your changes: + +git commit -m "Add my feature" +Push to your fork: Push your changes to your forked repository: + +git push origin my-feature-branch +Open a Pull Request: Go to the original repository and click on "New Pull Request". Select your branch and describe your changes. + +Code Style +Please ensure your code follows the project's coding style guidelines. + +Issues +If you find a bug or have a feature request, please create an issue in the repository. + +Thank you for contributing!