How to create a new branch from an existing branch for Bluemix project

79 views Asked by At

I am trying to create a new branch from an existing branch named "develop". For this I am using the command,

git checkout -b release master

It shows that the branch is created ... But in the jazz hub UI, I don't see it. Are there any more commands to make this happen? Can someone help me real quick, please? ...Thanks

enter image description here

1

There are 1 answers

0
Ram Vennam On BEST ANSWER

You need to push your new branch to remote.

git push origin release