Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.04 KB

HOW-TO-CONTRIBUTE.md

File metadata and controls

43 lines (31 loc) · 1.04 KB

How to Make a Pull Request ?

Every Expert was once a beginner, so if you are facing difficulties or don't know how to make pull request. Don't worry, we are here to help you.

Prerequisites

  1. You should have an account on GitHub.
  2. You should have git installed on your computer.

Step 1 :

Fork the repository by clicking on FORK button.

Step 2 :

Clone the repo on your computer using git bash.

git clone https://github.com/dipakkr/A-to-Z-Resources-for-Students.git

Step 3 :

Create a new Branch (follow the command given below )

git checkout -b my-branch

Step 4:

Go to file "CONTRIBUTORS.md" and add you name.

Step 5 :

Commit and push your changes.

git add .
git commit -m "added first commit"
git push origin my-branch

Step 6 :

Now, go to your forked repository on GitHub and Click make New Pull request.

Step 7 :

Congratulations !!! You have successfully made your first contribution on GitHub.

Feel free to reach out in case you are facing any difficulties.