Creating a Pull Request


Make sure to have the Repo Forked

git clone <LINK TO REPO>

By default you will be in the main branch we will create and switch to a new branch.

git checkout -b <BRANCH NAME>

Once you Make Changes to the branch

Make sure to add and commit with meaningful message

# Add Files git add <FILE NAME> # Add All Changed Files git add . # To Remove Files git checkout -- <FILE NAME>

Now to commit

git commit -m "<COMMIT MESSAGE>"

Push the Changes to your Repo

git push origin <BRANCH NAME>

This will push the code to your Forked Repo

Once you visit your Repo on Github you will get on Option to Create a Pull Request