I have a git repository with multiple branches which I wanted to push to google source repository. But it takes only a particular branch of the repository. How can I create a branch on google source repository and push code to that branch only ?
I have a git repository with multiple branches which I wanted to push to google source repository. But it takes only a particular branch of the repository. How can I create a branch on google source repository and push code to that branch only ?
create a new branch:
edit, add and commit your files.
then push the branch to the remote:
assuming you have already added it as remote.
see git checkout & git push.