From b285985bdc9589fa31b561e59a6ee524674bcdca Mon Sep 17 00:00:00 2001 From: Priyansh Nama <54625644+priyanshnama@users.noreply.github.com> Date: Thu, 8 Oct 2020 10:48:42 +0530 Subject: [PATCH 1/3] CONTRIBUTING.md added --- CONTRIBUTING.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..40c5fbc --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,31 @@ +# Contributing + +## Getting Started + +1. Submit an issue describing your proposed change. +2. Fork the repository on GitHub. +3. Clone the fork + +## Making Changes + +* Create a branch : `git checkout -b branch-name`. Please avoidmworking directly on the `master` branch. +* Make commits of logical units. +* Make changes in `repositories.json` file only. +* Put this `json object` anywhere in between the other repositories listed in the file **but please do not add it at the start or end of the list.** + + +```json +{ + "name": "repo-name", + "link": "repo-link", + "labels": ["issue-label1", "issue-label2"] +}, +``` +* Make sure your commit messages are in the proper format. + +## Submitting Changes + +* Push your changes to the branch in your fork of the repository. +* Submit a pull request to the repository. +* The contributors look at Pull Requests and review them on a regular basis. +* Upon merging of your pull request, `Readme.md` will be automatically updated listing the beginners-friendly repository added by you. \ No newline at end of file From 598c7c0dac0aec15bd0ae035976123458d5fb192 Mon Sep 17 00:00:00 2001 From: Priyansh Nama <54625644+priyanshnama@users.noreply.github.com> Date: Thu, 8 Oct 2020 16:22:22 +0530 Subject: [PATCH 2/3] typo fixed --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 40c5fbc..9c3506c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ ## Making Changes -* Create a branch : `git checkout -b branch-name`. Please avoidmworking directly on the `master` branch. +* Create a branch : `git checkout -b branch-name`. Please avoid working directly on the `master` branch. * Make commits of logical units. * Make changes in `repositories.json` file only. * Put this `json object` anywhere in between the other repositories listed in the file **but please do not add it at the start or end of the list.** From 4d230c8845eaf577de14a146778e5d896f32a006 Mon Sep 17 00:00:00 2001 From: Priyansh Nama <54625644+priyanshnama@users.noreply.github.com> Date: Thu, 8 Oct 2020 21:29:57 +0530 Subject: [PATCH 3/3] minor change regarding issue opening --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9c3506c..0ae979d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ## Getting Started -1. Submit an issue describing your proposed change. +1. Feel free to open an issue if you wish to propose something new. 2. Fork the repository on GitHub. 3. Clone the fork