Skip to content

Latest commit

 

History

History
70 lines (43 loc) · 1.66 KB

Contribution-Guidelines.md

File metadata and controls

70 lines (43 loc) · 1.66 KB

Contribution Guidelines

Thank you for considering contributing to Py_OS! Contributions are highly valued and help improve the project. Please follow the guidelines outlined below to ensure a smooth and effective contribution process.

Getting Started

  1. Fork the Py_OS repository.

  2. Clone your forked repository to your local machine:

    git clone https://github.com/warlord1901t/Py_OS.git
  3. Navigate to the project directory:

    cd Py_OS
  4. Set up a virtual environment (optional but recommended):

    python -m venv venv
    source venv/bin/activate  # On Windows, use `venv\Scripts\activate`
  5. Install the project dependencies:

    pip install -r requirements.txt
  6. Make your changes and test them locally.

Contributing Code

  1. Create a new branch for your feature or bug fix:

    git checkout -b feature-or-bugfix-branch
  2. Make your changes and ensure that your code follows the project's coding standards.

  3. Test your changes thoroughly.

  4. Commit your changes with descriptive commit messages:

    git commit -m "Brief description of your changes"
  5. Push your changes to your forked repository:

    git push origin feature-or-bugfix-branch
  6. Create a Pull Request (PR) from your branch to the main Py_OS repository.

Reporting Issues

If you encounter any bugs or have suggestions, please open an issue on the GitHub Issue Tracker.

Code of Conduct

Please review and adhere to our Code of Conduct.

Thank you for your contributions!