github upload commands code example
Example 1: pushing to github
git add .
git commit -m "First commit"
git push origin master
Example 2: how to upload existing project to github
git remote add origin remote repository URL
git remote -v
git push -f origin master