解决git push报错:failed to push some refs to ‘[email protected]:anightmonarch/JavaEasyGoing.git‘

1、报错日志

在向github远程仓库推送本地代码时,出现以下报错:

error: failed to push some refs to '[email protected]:anightmonarch/JavaEasyGoing.git'

解决git push报错:failed to push some refs to ‘git@github.com:anightmonarch/JavaEasyGoing.git‘_第1张图片

2、分析解决

经查阅资料了解到出现这个错误的原因是因为远程仓库和本地仓库不一致导致的,这时候我就突然想到,我在线添加了一个文件license,在本地仓库中是没有的:

解决git push报错:failed to push some refs to ‘git@github.com:anightmonarch/JavaEasyGoing.git‘_第2张图片
解决办法,就是将远程代码同步到本地,使用以下命令即可:

#看清楚自己的主分支是master还是main,我的因为取了别名,所以是main
git pull --rebase origin master/main

解决git push报错:failed to push some refs to ‘git@github.com:anightmonarch/JavaEasyGoing.git‘_第3张图片
再次执行命令推送:

git push origin main

解决git push报错:failed to push some refs to ‘git@github.com:anightmonarch/JavaEasyGoing.git‘_第4张图片
推送成功,简单记录一下!


一起学编程,让生活更随和!如果你觉得是个同道中人,欢迎关注博主公众号:【随和的皮蛋桑】。

专注于Java基础、进阶、面试以及计算机基础知识分享。偶尔认知思考、日常水文。

解决git push报错:failed to push some refs to ‘git@github.com:anightmonarch/JavaEasyGoing.git‘_第5张图片

你可能感兴趣的:(踩坑,git,github,git,push,git,--rebase)