【解决】IDEA中Push to origin/master was rejected错误
在IDEA中push项目的时候遇到 Push to origin/master was rejected
错误提示。
该错误意思是推送被拒绝
原因是:
项目初始化时勾选了README.md
文件,或者之前存在其它文件。而本地仓库与远程仓库尚未进行文件关联,因此需要将两个仓库的文件进行关联后提交。
解决方法:
切换到自己项目所在的目录,右键选择
GIT BASH Here
,Idea中可使用Alt
+F12
在
terminl
窗口中依次输入命令:1
2
3git pull
git pull origin master
git pull origin master --allow-unrelated-histories在IDEA重新push项目。
1 |
|
【解决】IDEA中Push to origin/master was rejected错误
http://anximin.github.io/2021/07/29/git_push_rejected/