Comment utiliser GitHub pour configurer des projets

 create a project in your GitHub account from the browser
 then use VS CODE or your terminal to clone your project "git clone URL"
 open your project and make any changes:
   1- 'git add .' // for add all file you changed
   2- 'git commit -m "your commit" '
   3- 'git push -u' to push your project
Tarzi