错误如下:
Git Pull Failed: fatal: refusing to merge unrelated histories
意思是git拒绝合并两个不相干的东西
此时你需要在打开Git Bash,然后进入相应的目录,然后敲git命令:
$ git pull origin master --allow-unrelated-histories
出现类似于这种信息就说明pull成功了:
$ git pull origin master --allow-unrelated-histories From gitee.com:alanro/suisuinian__server * branch master -> FETCH_HEAD Merge made by the 'recursive' strategy. LICENSE | 191 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 LICENSE
然后你可以利用git status查看一下当前仓库的状态,是不是所有的全部add并且commit,如果全部完成,那么此时你就可以将本地仓库中的推送到github中,使用如下的git命令:
$ git push -u origin master
搞定
近期评论