Skip to content

Commit 714b345

Browse files
authored
Merge pull request #78 from safil-badarudeen/Documentation_updation
Updated the documentation
2 parents fb5e7fc + 249dece commit 714b345

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

README.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,66 @@ npm i
3333
npm run dev
3434
```
3535

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+
3696
**Troubleshoot**
3797
Facing problem starting the server or any other problem? Please let us know by raising an ![issue](https://github.com/devvsakib/github-error-solve/issues/new)
3898

0 commit comments

Comments
 (0)