当前位置:   article > 正文

git 使用 fatal: refusing to merge unrelated histories

fatal: refusing to merge unrelated histories

拉取代码时候报错:fatal: refusing to merge unrelated histories

是因为本地的仓库与远程的仓库没有相关的历史。

解决方法:添加 --allow-unrelated-histories 选项。

git pull origin master --allow-unrelated-histories

提交本地代码到远程仓库的步骤:

1)本地文件夹初始化为git 仓库。

git init 

2)将本地仓库与远程仓库进行关联,xxxx.git需要根据实际情况修改。

git remote add origin xxxx.git

3)添加本目录下修改的代码到缓冲区中。

  1. git add . 
  2. git commit  -m "first commit"

4)提交到远程仓中

git push -u origin master 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/418376
推荐阅读
相关标签
  

闽ICP备14008679号