how to upload code to github to different branch code example
Example 1: push project to new branch git
git push -u origin branchName
Example 2: git link local branch to remote branch
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'