push to remote github command line code example
Example 1: pushing to github
git add .
git commit -m "First commit"
git push origin master
Example 2: github Push local branch to Remote
git push origin <Branch_Name>
git add .
git commit -m "First commit"
git push origin master
git push origin <Branch_Name>