This is a simple tutorial for beginner in Web Front End Developing.
https://git-scm.com/download/win
https://code.visualstudio.com/
Create an account on Github
cmd
Set your Information ( Use your Github account )
git config --global user.name "tigercosmos"
git config --global user.email "b04209032@ntu.edu.tw"
Create a repo on Github, and clone to your computer
For example:
git clone https://github.com/tigercosmos/tigercosmos.newProject.git
After coding, you want to commit on git
cd (your project name)
git add -A
git commit -m "describe what you do"
git push
Or you can use Git GUI or VS Code to commmit.