git pull --allow-unrelated-histories origin master

前端之家收集整理的这篇文章主要介绍了git pull --allow-unrelated-histories origin master前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我们经常在远端建立一个 git 仓库。

然后在本地的 git 仓库中执行

git remote add [remote_git_name] [remote_git_url]

添加远程仓库

git push [remote_git_name] [branch]

推送我们的本地仓库内容到远端。

最开始建立完后,要执行一次 git pull,这里容易失败,是因为远端的版本和本地的不一致。这时执行下面命令:

git pull --allow-unrelated-histories [remote_git_name] [branch]

来强制合并。

原文链接:https://www.f2er.com/git/420033.html

猜你在找的Git相关文章