$ git push
When I tried to upload the code to git hub with
fatal: The current branch develop/feature/discussion has no upstream branch.
I was angry. It seems that "github says" I don't know the branch ".
You can give it an upstream branch, but it will give you a hint in case of an error.
So as it is
$ git push --set-upstream origin develop/feature/discussion
Code
$ git push
Now, enter the password and you're good to go.
Everything up-to-date
Recommended Posts