@@ -23,37 +23,38 @@ For beginners and intermediates!
23
23
24
24
## Contributors Guide
25
25
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
27
27
[ GitHub For Beginners] ( http://readwrite.com/2013/09/30/understanding-github-a-journey-for-beginners-part-1/ )
28
28
before moving to the next step.
29
29
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 )
31
31
32
- 3 . Clone the forked Repository <br >
32
+ - Clone the forked Repository <br >
33
33
``` git
34
34
$ git clone https://github.com/BolajiAyodeji/js-code-snippets.git
35
35
```
36
36
37
- 4 . Enter the cloned directory <br >
37
+ - Enter the cloned directory <br >
38
38
``` git
39
39
cd js-code-snippets
40
40
```
41
41
42
- 5 . Open directory in your Code Editor <br >
42
+ - Open directory in your Code Editor <br >
43
43
``` git
44
44
code .
45
45
```
46
46
47
- 6 . Add new snippets! <br >
47
+ - Add new snippets! <br >
48
48
Ensure to add each snippets in the expected folder directory. <br >
49
49
If possible, try to show multiples ways of solving the same problem from the less efficient to the most efficient algorithm.
50
50
51
- 7 . Push your files <br >
51
+ - Push your files <br >
52
52
``` git
53
53
$ git add --all
54
54
$ git commit -m "commit description here"
55
55
$ git push -u origin master
56
56
```
57
+
57
58
- Open a Pull Request ( [ What is a pull request?] ( https://yangsu.github.io/pull-request-tutorial/ ) )
58
59
- Add enough description of what you did, changes you made and if possible screenshots
59
60
- Wait for Review (Your PR would be reviewed and merged if deemed fit)
0 commit comments