美文网首页
Git上传项目提示Push rejected: Push to

Git上传项目提示Push rejected: Push to

作者: Bricklayer | 来源:发表于2019-06-16 21:23 被阅读0次

    Git上传项目提示Push rejected: Push to origin/master was rejected解决办法

    首先是你的项目中有和推送历史不符的东西 

    Push rejected: Push to origin/master was rejected 

    推拒绝:推送到起源/主人被拒绝 

    解决办法,打开你要上传代码的文件夹位置鼠标右键git Bash Here然后直接运行下面的命令解决问题

    第一种办法:

    git pull 

    git pull origin master 

    git pull origin master –allow-unrelated-histories

    第二种办法:

    git pull origin master –allow-unrelated-histories 

    git push -u origin master -f

    相关文章

      网友评论

          本文标题:Git上传项目提示Push rejected: Push to

          本文链接:https://www.haomeiwen.com/subject/yelnfctx.html