From d1752f7f0f5d28834941ad815338744ad87c7f8f Mon Sep 17 00:00:00 2001 From: Ayush Parikh Date: Tue, 17 Sep 2024 08:45:22 +0530 Subject: [PATCH] Create CONTRIBUTING.md --- CONTRIBUTING.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..287c1f97a --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,48 @@ + ## HOW TO CONTRIBUTE ? 👷 + +**1.** Fork [this](https://github.com/Ayushparikh-code/Web-dev-mini-projects) repository. + +**2.** Clone the forked repository. + +```terminal +git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects +``` + +**3.** Navigate to the project directory. + +```terminal +cd Web-dev-mini-projects +``` + +**4.** MAKE A NEW FOLDER WITH YOUR PROJECT NAME INSIDE web-dev-mini-projects & Add your project files (eg: index.html ,style.css, script.js) inside that folder +
+ +**5.** Also Add a README file in your project folder which consists of Description/screenshots about your project ! + + +
+ +**6.** Create a new branch. + +```terminal +git checkout -b +``` + +**7.** Add & Commit your changes. + +```terminal + git add . + git commit -m "" +``` + +**7.** Push your local branch to the remote repository. + +```terminal +git push -u origin +``` + +**8.** Create a Pull Request! + +**Congratulations!** Sit and relax till we review your PR, you've made your contribution to (https://github.com/Ayushparikh-code/Web-dev-mini-projects) project + +