error: src refspec master does not match any

后端 未结 21 1207
别跟我提以往
别跟我提以往 2020-12-22 17:38

I have tried to follow the solutions suggested in this post but it didnt work and I am still getting: src refspec master does not match any.

Here is what I did: Fo

21条回答
  •  天命终不由人
    2020-12-22 18:07

    From git branch it appears that somehow your local branch name is "origin".

    You can rename the branch with -mv flag, like this:

    git branch -mv origin master

    After this git branch should show master :-)

    Just to make sure the name is indeed the only thing that went astray, you can run git log and look at the last few commits - and compare them to the last few commits on bitbucket website.

提交回复
热议问题