我们在idea的控制台终端区提交我们的代码文件至远程仓库时,程序报如下错误: Updates were rejected because the tip of your current branch is behind its remote counterpart. Integrate the remote changes (e.g.‘git pull …’) before pushing again.
这是因为在本地新建库后,与远程仓库的内容不一致导致的(远程仓库有一些内容本地没有)。解决办法就是先将本地仓库和远程仓库的内容保持一致。正确的提交过程如下
git init //初始化仓库
git add .(文件name) //添加文件到本地
git commit -m “first commit” //添加文件描述信息
git remote add origin 远程仓库地址 //链接远程仓库
git pull origin master // 把本地仓库的变化连接到远程仓库master 分支
git push -u origin master //把本地仓库的文件推送到远程仓库master 分支
执行第五步时候如果出现一以下情况,是因为文件版本没有及时更新,两个分支是两个不同的版本,具有不同的提交历史,决绝方式就是在原本的命令之后加上一句命令即可:
`git pull origin master --allow-unrelated-histories
`然后运行第六步将代码提交到远程仓库,就可以解决问题了
|