how to push project to github branch code example
Example 1: push project to new branch git
git push -u origin branchName
Example 2: pushing to github
git add .
git commit -m "First commit"
git push origin master
git push -u origin branchName
git add .
git commit -m "First commit"
git push origin master