Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.17 KB

File metadata and controls

57 lines (36 loc) · 1.17 KB

Python For All

Aligned with Python's Baseline Course. Aim is to make this a One Stop Solution for Python.

Tech Stack

Python and Only Python

How to Contribute

1. Fork the Repository:
    - Click on the "Fork" button in the upper right corner.

Clone the project

  git clone https://link-to-project.git

Create a New Branch:
(In your local environment)

    cd project-directory
    git checkout -b your-branch-name

Make 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-name

Create a Pull Request:

  1. Visit your forked repository on GitHub.

  2. Click on "New Pull Request."

  3. Confirm the base repository is your friend's, and the base branch is "main."

  4. Confirm the head repository is your forked repository, and the compare branch is your branch (e.g., "your-branch-name").

  5. Describe and Submit Pull Request:

  6. Provide a title and comment to explain your changes.

  7. Click on "Create Pull Request" to submit your changes.