Skip to content

Commit 5e136a2

Browse files
committed
update docs
1 parent 44f2703 commit 5e136a2

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -23,37 +23,38 @@ For beginners and intermediates!
2323

2424
## Contributors Guide
2525

26-
1. If you are new to Git and Github, it is advisable you go through
26+
- If you are new to Git and Github, it is advisable you go through
2727
[GitHub For Beginners](http://readwrite.com/2013/09/30/understanding-github-a-journey-for-beginners-part-1/)
2828
before moving to the next step.
2929

30-
2. Fork the Repository [here](https://github.com/BolajiAyodeji/js-code-snippets/fork)
30+
- Fork the Repository [here](https://github.com/BolajiAyodeji/js-code-snippets/fork)
3131

32-
3. Clone the forked Repository <br>
32+
- Clone the forked Repository <br>
3333
```git
3434
$ git clone https://github.com/BolajiAyodeji/js-code-snippets.git
3535
```
3636

37-
4. Enter the cloned directory <br>
37+
- Enter the cloned directory <br>
3838
```git
3939
cd js-code-snippets
4040
```
4141

42-
5. Open directory in your Code Editor <br>
42+
- Open directory in your Code Editor <br>
4343
```git
4444
code .
4545
```
4646

47-
6. Add new snippets! <br>
47+
- Add new snippets! <br>
4848
Ensure to add each snippets in the expected folder directory. <br>
4949
If possible, try to show multiples ways of solving the same problem from the less efficient to the most efficient algorithm.
5050

51-
7. Push your files <br>
51+
- Push your files <br>
5252
```git
5353
$ git add --all
5454
$ git commit -m "commit description here"
5555
$ git push -u origin master
5656
```
57+
5758
- Open a Pull Request ( [What is a pull request?](https://yangsu.github.io/pull-request-tutorial/) )
5859
- Add enough description of what you did, changes you made and if possible screenshots
5960
- Wait for Review (Your PR would be reviewed and merged if deemed fit)

0 commit comments

Comments
 (0)