git push in a new branch code example
Example 1: push project to new branch git
git push -u origin branchName
Example 2: git push in a new branch
git checkout -b
git add .
git commit -m "comment"
git push -u origin
git push -u origin branchName
git checkout -b
git add .
git commit -m "comment"
git push -u origin