0


idea中用git上传项目失败

在idea中使用git去将项目上传到仓库的时候,上传失败并且右下角弹出黄色的警告框显示上传失败,查看日志后报错如下:

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了。

标签: git github

本文转载自: https://blog.csdn.net/qq_47455973/article/details/124901486
版权归原作者 qq_47455973 所有, 如有侵权,请联系我们删除。

“idea中用git上传项目失败”的评论:

还没有评论