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
You need to push your new branch to remote.
git push origin release