Updates were rejected because the remote contains work that you do
Posted Ylnog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Updates were rejected because the remote contains work that you do相关的知识,希望对你有一定的参考价值。
每次建立新的仓库,提交的时总会出现这样的错误,真是头疼,......
直接开始正题,git 提交的步骤:
1. git init //初始化仓库
2. git add .(文件name) //添加文件到本地仓库
3. git commit -m "first commit" //添加文件描述信息
4. git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支
5. git push -u origin master //把本地仓库的文件推送到远程仓库
提交之后就会出现以下错误
要想解决以上错误,只需要在4,5之间使用git pull origin master即可
正确步骤:
1. git init //初始化仓库
2. git add .(文件name) //添加文件到本地仓库
3. git commit -m "first commit" //添加文件描述信息
4. git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支
5. git pull origin master // 把本地仓库的变化连接到远程仓库主分支
6. git push -u origin master //把本地仓库的文件推送到远程仓库
OK
搞定,回家吃饭!!
以上是关于Updates were rejected because the remote contains work that you do的主要内容,如果未能解决你的问题,请参考以下文章
VS2019 github push失败: Updates were rejected because the tip of your current branch is behind
git提交时报错:Updates were rejected because the tip of your current branch is behind
github每次创建新的项目都各种报错Updates were rejected because the remote contains work that you do
解决Jenkins的错误“The Server rejected the connection: None of the protocols were accepted”
解决 failed to push some refs to 'git@github.com:zle1992/head-first-java' hint: Updates were r