【Git报错】error: failed to push some refs to 'https://gitee.com/lhm8013609/mldl_-learning-notes'

报错:

【Git报错】error: failed to push some refs to 'https://gitee.com/lhm8013609/mldl_-learning-notes'

 

 出现错误的主要原因是gitee(github)中的包括一些README.md等文件不在本地代码目录中 

解决方案:

1、此时我们要执行下面的命令把相关文件拉到本地

git pull --rebase origin master

【Git报错】error: failed to push some refs to 'https://gitee.com/lhm8013609/mldl_-learning-notes'

 

 2、再次用下方命令将本地的master分支推送到origin主机

git push -u origin master

【Git报错】error: failed to push some refs to 'https://gitee.com/lhm8013609/mldl_-learning-notes'

 

 至此,就成功了。

 

【Git报错】error: failed to push some refs to 'https://gitee.com/lhm8013609/mldl_-learning-notes'

上一篇:CSS基础(一)-添加CSS代码的三种方式(内联、内部、外部)、CSS标签选择器(标签、类、id)


下一篇:C语言中强制类型转换总结