解决:idea项目git提交时报错Push rejected
今天用git提交项目的时候,死活提交不上,报错
push rejected
,查了很多资料,在这里记录一下
解决方案一:
在terminl窗口输入命令:(亲测)
git pull
git pull origin master
git pull origin master --allow -unrelated -histories
解决方案二:
打开到git项目文件夹位置,鼠标右键git Bash Here,输入如下两行命令
git pull origin master –allow-unrelated-histories
git push -u origin master -f