在idea中使用git去将项目上传到仓库的时候,上传失败并且右下角弹出黄色的警告框显示上传失败,查看日志后报错如下:文章来源:https://www.toymoban.com/news/detail-613111.html
hint: not have locally. This is usually caused by another repository pushing
Done
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
问题原因:
出现这种问题的原因是因为本地仓库刚建立,没有远程仓库的README.md文件,所以导致的上传失败.
解决方法:
使用下面的命令将文件从远程仓库下载下来
git pull --rebase origin master
然后再去上传项目就ok了。文章来源地址https://www.toymoban.com/news/detail-613111.html
到了这里,关于idea中用git上传项目失败的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!