git - Branch exists locally, but not in the origin -


when enter folder on server, , type git branch command, see following result:

*develop something_else master 

but when enter repository on bitbucket, see branch develop not there. there's dev branch instead. same thing in sourcetree.

what's wrong?

you need push remote:

git push -u origin <your branch name> 

should it.

more info here


Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -