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
Copy file name to clipboardExpand all lines: README.md
+60Lines changed: 60 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,66 @@ npm i
33
33
npm run dev
34
34
```
35
35
36
+
- If Project Starts everything is correct , Now you need to stop the project.
37
+
38
+
```console
39
+
Cntrl + C
40
+
```
41
+
42
+
- Make a New branch.The change you are going to make would be a good branch name.
43
+
44
+
```console
45
+
git checkout -b <name-of-your-branch>
46
+
```
47
+
48
+
- Stage your changes
49
+
50
+
```console
51
+
git add --all
52
+
```
53
+
54
+
or
55
+
56
+
```console
57
+
git add <Name-of-file-to-stage>
58
+
```
59
+
60
+
- Commit changes
61
+
62
+
```console
63
+
git commit -m "<Commit-message>"
64
+
```
65
+
66
+
- Check status of your repository.
67
+
68
+
```console
69
+
git status
70
+
```
71
+
72
+
- The response should be like this
73
+
74
+
75
+
```console
76
+
On branch <name-of-your-branch>
77
+
nothing to commit, working tree clean
78
+
```
79
+
- Pushing your repository to GitHub.
80
+
81
+
```console
82
+
git push origin <name-of-your-branch>
83
+
```
84
+
or
85
+
86
+
87
+
```console
88
+
git branch -M main
89
+
git push -u origin main
90
+
```
91
+
92
+
- On the GitHub website, navigate to your forked repo - on the top of the files section, you'll notice a new section containing a `Compare & Pull Request` button!
93
+
94
+
- Click on that button, this will load a new page, comparing the local branch in your forked repository against the main branch. Click the green `Create Pull Request` button.
95
+
36
96
**Troubleshoot**
37
97
Facing problem starting the server or any other problem? Please let us know by raising an 
0 commit comments