
Today we'll learn essential tools for software development.

Positive : Hint: The keyboard shortcut is Ctrl + Shift + I on Windows or Command + Option + I on MacOS



console.log('Hello DevTools').
info.txt and README.md in coderschool/ directoryinfo.text addMy name is : <yourname>
My age is : <yourage>
My education : <your education>
coderschool/ directoryHint: Make sure which directory you are CURRENTLY at before git init
Requirement :

coderschool/
-| info.txt
-| README.md
-| course_content/
--| week1/
---| index.html
---| style.css
--| week2/
---| script.js
Create a new public repo on Github, call it cs_ftw_notes. You will use this repo to store your notes during the course

Follow the intrucstion on github to connect remote github and your local git repository
Positive : Hint: Use the Git commands add, commit and push in this order.
coderschool_clone that is not related to your previous work
coderschool_clone). at the end of the command mean : clone all the sub-folders in the github repo to the CURRENT directory you are using. Without the ., you will have the all the sub-folders in the github repo wrapped inside another folder in the CURRENT directory you are usinggit clone <url> .
version 2.0The result is you will have 2 different repos Positive : Hint: Use the Git commands add, commit and push in this order.
coderschool/ your localversion 2.0 from remote coderschool to your this local repo.v2 to a completely new , seperate repoPositive : Hint: Use this command git pull origin master