upload a visual studio code project to github code example
Example 1: how to upload existing project to github
git remote add origin remote repository URL
git remote -v
git push -f origin master
Example 2: VS github commit
// ready the changes for commit
git add .
// commit your changes with a message
git commit -m "Your message to refernce your commit"