I appreciate your interest in contributing to EasyRls! To ensure a smooth and collaborative process, please follow the guidelines outlined below.
- Go to the EasyRls GitHub repository.
- Click the "Fork" button in the top-right corner to create a copy of the repository in your own GitHub account.
Clone your forked repository to your local machine:
git clone https://github.com/dikshantrajput/easyRls.git
cd EasyRls
Create a new branch for your changes. Use a descriptive name for your branch:
git checkout -b feature/your-feature-name
Make your changes to the codebase. Ensure your code follows existing style guidelines and conventions.
Commit your changes with a clear, descriptive message:
git add .
git commit -m "Add a clear description of your changes"
Push your changes to your forked repository:
git push origin feature/your-feature-name
Go to the EasyRls GitHub repository and open a pull request from your branch to the main
branch of the original repository. Provide a detailed description of your changes and any relevant context.
- Describe Your Changes: Clearly describe what your pull request does and why.
- Link to Issues: Reference any related issues (e.g.,
Fixes #42
). - Follow Coding Standards: Adhere to the coding style used in the project.