Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 1.69 KB

CONTRIBUTING.md

File metadata and controls

58 lines (36 loc) · 1.69 KB

Contributing to EasyRls

I appreciate your interest in contributing to EasyRls! To ensure a smooth and collaborative process, please follow the guidelines outlined below.

How to Contribute

1. Fork the Repository

  1. Go to the EasyRls GitHub repository.
  2. Click the "Fork" button in the top-right corner to create a copy of the repository in your own GitHub account.

2. Clone Your Fork

Clone your forked repository to your local machine:

git clone https://github.com/dikshantrajput/easyRls.git
cd EasyRls

3. Create a New Branch

Create a new branch for your changes. Use a descriptive name for your branch:

git checkout -b feature/your-feature-name

4. Make Your Changes

Make your changes to the codebase. Ensure your code follows existing style guidelines and conventions.

6. Commit Your Changes

Commit your changes with a clear, descriptive message:

git add .
git commit -m "Add a clear description of your changes"

7. Push Your Changes

Push your changes to your forked repository:

git push origin feature/your-feature-name

8. Create a Pull Request

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.

Pull Request Guidelines

  • 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.