user10077799
user10077799

Reputation:

Creating a github remote branch

Why i'm unable to create a branch on remote.I'm using this command git push --set-upstream origin mybranch There is no error message on terminal. It asks for email and pass. But when I refresh github.com. There is no branch other than 'master'Notice the bottom section of the terminal

Upvotes: 0

Views: 22

Answers (2)

markroxor
markroxor

Reputation: 6496

It is because you are not pushing to the right remote branch. Try -

git push test-1 master

Upvotes: 0

devd
devd

Reputation: 392

The branch is there in github.Click on the branches linkenter image description here

Upvotes: 1

Related Questions