Skip to content

Instantly share code, notes, and snippets.

@onlyoneaman
Created July 25, 2019 07:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onlyoneaman/fbc336965ddcf32f6d789791380e2bbf to your computer and use it in GitHub Desktop.
Save onlyoneaman/fbc336965ddcf32f6d789791380e2bbf to your computer and use it in GitHub Desktop.

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/Amank1647/Decision_Helper.git

Step 3 :

Create a new Branch (follow the command given below )

git checkout -b my-branch

Step 4:

Make whatever changes you wanna make in the repository.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment