Git Fast-Forward Merge requires a pull first

后端 未结 3 1168
臣服心动
臣服心动 2021-01-23 13:11

I have a remote repo which i have changed the last time i cloned it.

The local Repo also change some of the files in my local repo.

What i would like to do is pu

3条回答
  •  感动是毒
    2021-01-23 13:46

    Type:

    git pull
    

    to fetch the remote changes, and merge them with your changes. Resolve any conflicts which arise, and then type

    git push
    

    to send your local changes (plus the new merge commits) back upstream.

提交回复
热议问题