Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Commit 05d0c91

Browse files
authored
update contributing.md
1 parent 39249f0 commit 05d0c91

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/CONTRIBUTING.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -64,42 +64,42 @@ We welcome pull requests from beginners and seasoned javaScript developers alike
6464
6565
#### Running Locally
6666
67-
1. Clone repository
67+
1. Fork the [repository](https://github.com/coderplex/coderplex).
68+
1. Then clone your forked repository
6869
```bash
69-
$ git clone https://github.com/coderplex/coderplex.git
70+
$ git clone <your forked repository url>
7071
```
71-
2. Move to the repository root folder
72+
1. Move to the repository root folder
7273
```bash
7374
$ cd coderplex
7475
```
75-
3. Install dependencies
76+
1. Install dependencies
7677
```bash
7778
$ yarn
7879
```
79-
4. Start the development server
80+
1. Start the development server
8081
```bash
8182
$ yarn dev
8283
```
8384
App now opens at `localhost:3000` in your default browser.
8485
> You may get this [error]() if any other app is already running the above port.
8586
8687
#### Before submitting:
87-
1. Fork the [repository](https://github.com/coderplex/coderplex).
88-
2. From your fork, create a [branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/) and name it. eg. `typo-in-readme`
89-
3. If you’ve fixed a bug or added code that should be tested, add tests!
90-
4. Ensure that all test pass
88+
1. From your fork, create a [branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/) and name it. eg. `typo-in-readme`
89+
1. If you’ve fixed a bug or added code that should be tested, add tests!
90+
1. Ensure that all test pass
9191
```bash
9292
$ yarn test
9393
```
94-
5. Run code formatters
94+
1. Run code formatters
9595
```bash
9696
$ yarn lint
9797
```
98-
6. Add and commit your code. Please give meaning full commit messages.
99-
7. Pull latest code from [upstream repository's ](https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/)`develop`, if in case anything new were merged while you were working on your fork.
100-
8. Push the code to your fork.
101-
9. Raise the pull request from your created branch to `develop` branch of coderplex. [why develop instead of master branch?]()
102-
10. Take some time to give a brief description of the work you have done.
98+
1. Add and commit your code. Please give meaning full commit messages.
99+
1. Pull latest code from [upstream repository's ](https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/)`develop`, if in case anything new were merged while you were working on your fork.
100+
1. Push the code to your fork.
101+
1. Raise the pull request from your created branch to `develop` branch of coderplex. [why develop instead of master branch?]()
102+
1. Take some time to give a brief description of the work you have done.
103103

104104
#### After submitting
105105
1. Wait for all checks to pass in below section.

0 commit comments

Comments
 (0)