git how to push new branch to existing project 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 <branch>
git add .
git commit -m "comment"
git push -u origin <branch>