Your branch is ahead of 'origin/master' by 1 commit

后端 未结 4 1817
别跟我提以往
别跟我提以往 2021-01-28 13:37

I\'m a little new to Git, and I\'m hoping somebody can explain what this message means exactly, in my scenario.

To give you some background information, this is what I\'

4条回答
  •  鱼传尺愫
    2021-01-28 14:11

    This means that you have committed changes to the repository local to your machine. Those commits do not exist in the repository that you have cloned from. That message is a reminder that your repository has things in it that do not exist anywhere else.

    To make git "happy" you need to push your changes somewhere (usually from where you cloned from)

    run git push origin master to resolve.

提交回复
热议问题