From 758d9808c474da838828aed130ad7560fa640ccf Mon Sep 17 00:00:00 2001 From: souravkr Date: Wed, 30 Sep 2020 23:09:41 +0530 Subject: [PATCH] Added intructions on how to contribute in the repo --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8716e79..13db035 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ + # Algorithms Data Structure Libraries and Algorithms implementation in C++ -**Disclaimer**
+**Disclaimer**
This repository is meant to be used as a reference to learn data structure and algorithm. @@ -63,5 +64,24 @@ algorithm. * [comb sort](https://en.wikipedia.org/wiki/Comb_sort) ## Contribution -Feel Free to contribute.
+Feel Free to contribute. +* Fork this repository (Click the Fork button in the top right of this page, click your Profile Image) +* Clone your fork down to your local machine +```markdown +git clone (given in clone or download button) +``` +* Create a branch +```markdown +git checkout -b branch-name +``` +* Make your changes (add algorithm) +* Commit and Push +```markdown +git add . +git commit -m 'commit message' +git push origin branch-name +``` +* Create a New Pull Request from your forked repository (Click the New Pull Request button located at the top of your repo) + + Please follow standard C++ Guidelines.