@@ -13,3 +13,50 @@ For beginners and intermediates!
1313- Functions
1414- Objects
1515- Operators
16+ 17+ 18+ # Contributors Guide
19+ 20+ 1 . If you are new to Git and Github, it is advisable you go through
21+ [ GitHub For Beginners] ( http://readwrite.com/2013/09/30/understanding-github-a-journey-for-beginners-part-1/ )
22+ before moving to the next step.
23+ 24+ 2 . Fork the Repository [ here] ( https://github.com/BolajiAyodeji/js-code-snippets/fork )
25+ 26+ 3 . Clone the forked Repository <br >
27+ ` $ git clone https://github.com/BolajiAyodeji/js-code-snippets.git `
28+ 29+ 4 . Enter the cloned directory <br >
30+ ` cd js-code-snippets `
31+ 32+ 5 . Open directory in your Code Editor <br >
33+ ` code . `
34+ 35+ 6 . Add new snippets! <br >
36+ Ensure to add each snippets in the expected folder directory. <br >
37+ If possible, try to show multiples ways of solving the same problem from the less efficient to the most efficient algorithm.
38+ 39+ 7 . Push your files <br >
40+ ``` shell
41+ $ git add --all
42+ $ git commit -m " commit description here"
43+ $ git push -u origin master
44+ ```
45+ - Open a Pull Request ( [ What is a pull request?] ( https://yangsu.github.io/pull-request-tutorial/ ) )
46+ - Add enough description of what you did, changes you made and if possible screenshots
47+ - Wait for Review (Your PR would be reviewed and merged if deemed fit)
48+ 49+ ## Helpful Resources
50+ 51+ - [ Pro GIT Book] ( https://git-scm.com/book/en/v2 )
52+ 53+ - [ Try Git] ( https://try.github.io/ )
54+ 55+ - [ Git/ Git Hub on Windows] ( https://www.youtube.com/watch?v=J_Clau1bYco )
56+ 57+ 58+ ## Author
59+ [ Bolaji Ayodeji] ( https://github.com/BolajiAyodeji )
60+ 61+ ## Licence
62+ [ MIT] ( https://opensource.org/licenses/MIT )
0 commit comments