fatal: The current branch NOMBRERAMA has not upstream branch

3

I am doing a game and I corrected some bugs in a branch that I created especially for it called "FixBugs", I made a commit in this branch when I already managed to correct them. But I find the following message when I want to do the push:

  

fatal: The current branch FixBugs has not upstream branch

What does this mean?

    
asked by Mr. Baldan 13.12.2018 в 15:03
source

1 answer

4

It means that the branch exists locally (where you have created it, but it does not exist remotely.

It should work if you define it explicitly to create it:

git push -u origin FixBugs
    
answered by 13.12.2018 / 15:39
source