You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**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
0 commit comments