Reputation:
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'
Upvotes: 0
Views: 22
Reputation: 6496
It is because you are not pushing to the right remote branch. Try -
git push test-1 master
Upvotes: 0