https://learn.javascript.ru/hello-world
Shopping List design example - https://codepen.io/JesseBilsten/full/MamMmr
git checkout -b <branch-name>
- to create and switch to new branchgit checkout <branch-name>
- switch to branchgit add -A
- to add all filesgit commit -m "<commit message>"
- to commitgit push origin <branch-name>
- to push to remote branchgit branch -r
- list all REMOTE branchesgit branch -l
- list all LOCAL branchesgit checkout -
- switch to previous branch