0

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

ralphearle
  • 1,696
  • 13
  • 18
H Varma
  • 570
  • 4
  • 12
  • 29
  • The command you used should work. Is your Jazz Hub UI pointing to your remote repo or you local? I'm not familiar with Jazz, is there some sort of refresh button/option you can click? – Jake Henningsgaard Dec 13 '16 at 16:12

1 Answers1

3

You need to push your new branch to remote.

git push origin release

Ram Vennam
  • 3,536
  • 1
  • 12
  • 19