Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.34 KB

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 1.34 KB

Contributing to Git & GitHub with Python Workshop

Thank you for considering contributing to this project! We welcome all kinds of contributions, whether it's improving the documentation, adding new features, or fixing bugs.

How to Contribute

  1. Fork the repository: Click the "Fork" button at the top right of this page to create a copy of this repository in your GitHub account.

  2. Clone your fork: Clone the repository to your local machine using the following command:

    git clone https://github.com/IIIT-Delhi/Github-Workshop.git
  3. Create a new branch: Create a new branch to work on a specific feature or fix.

    git checkout -b feature/my-new-feature
  4. Make your changes: Implement your changes in the code.

  5. Commit your changes: Commit your changes with a meaningful commit message.

    git add .
    git commit -m "Add feature XYZ"
  6. Push to your fork: Push your branch to your forked repository.

    git push origin feature/my-new-feature
  7. Submit a Pull Request: Open a pull request from your forked repository to the original repository.

Code Guidelines

  • Follow PEP 8 for Python code style.
  • Write meaningful commit messages.
  • Comment your code where necessary.

Thank you for your contribution!