Aligned with Python's Baseline Course. Aim is to make this a One Stop Solution for Python.
Python and Only Python
1. Fork the Repository:
- Click on the "Fork" button in the upper right corner.
Clone the project
git clone https://link-to-project.gitCreate a New Branch:
(In your local environment)
cd project-directory
git checkout -b your-branch-nameMake Changes:
Modify files using your preferred code editor.
Commit Changes:
git add . (or specific files that you want)
git commit -m "Your descriptive message"Push Changes to Your Fork:
git push origin your-branch-nameCreate a Pull Request:
-
Visit your forked repository on GitHub.
-
Click on "New Pull Request."
-
Confirm the base repository is your friend's, and the base branch is "main."
-
Confirm the head repository is your forked repository, and the compare branch is your branch (e.g., "your-branch-name").
-
Describe and Submit Pull Request:
-
Provide a title and comment to explain your changes.
-
Click on "Create Pull Request" to submit your changes.