git push to certain branch of certain repo code example
Example 1: push project to new branch git
git push -u origin branchName
Example 2: git push specific branch
$ git push <remote> <branch>
git push -u origin branchName
$ git push <remote> <branch>