Skip to content

Commit d1752f7

Browse files
Create CONTRIBUTING.md
1 parent fa1be6a commit d1752f7

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

CONTRIBUTING.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
## HOW TO CONTRIBUTE ? 👷
2+
3+
**1.** Fork [this](https://github.com/Ayushparikh-code/Web-dev-mini-projects) repository.
4+
5+
**2.** Clone the forked repository.
6+
7+
```terminal
8+
git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects
9+
```
10+
11+
**3.** Navigate to the project directory.
12+
13+
```terminal
14+
cd Web-dev-mini-projects
15+
```
16+
17+
**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
18+
<br>
19+
20+
**5.** Also Add a README file in your project folder which consists of Description/screenshots about your project !
21+
22+
23+
<br>
24+
25+
**6.** Create a new branch.
26+
27+
```terminal
28+
git checkout -b <your_branch_name>
29+
```
30+
31+
**7.** Add & Commit your changes.
32+
33+
```terminal
34+
git add .
35+
git commit -m "<your_commit_message>"
36+
```
37+
38+
**7.** Push your local branch to the remote repository.
39+
40+
```terminal
41+
git push -u origin <your_branch_name>
42+
```
43+
44+
**8.** Create a Pull Request!
45+
46+
**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
47+
48+
<br>

0 commit comments

Comments
 (0)