create origin branch from upstream code example
Example: create new remote branch
git checkout -b <new-branch-name> #Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely
git checkout -b <new-branch-name> #Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely