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.
-
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.
-
Clone your fork: Clone the repository to your local machine using the following command:
git clone https://github.com/IIIT-Delhi/Github-Workshop.git
-
Create a new branch: Create a new branch to work on a specific feature or fix.
git checkout -b feature/my-new-feature
-
Make your changes: Implement your changes in the code.
-
Commit your changes: Commit your changes with a meaningful commit message.
git add . git commit -m "Add feature XYZ"
-
Push to your fork: Push your branch to your forked repository.
git push origin feature/my-new-feature
-
Submit a Pull Request: Open a pull request from your forked repository to the original repository.
- Follow PEP 8 for Python code style.
- Write meaningful commit messages.
- Comment your code where necessary.
Thank you for your contribution!