push repository in new branch to github code example
Example 1: github Push local branch to Remote
git push origin <Branch_Name>
Example 2: git push in a new branch
git checkout -b <branch>
git add .
git commit -m "comment"
git push -u origin <branch>