学无先后,达者为师

网站首页 编程语言 正文

git 提交到远程仓库 报错 error: failed to push some refs to ‘https://xxxxxx.git‘

作者:一只程序猿小白 更新时间: 2022-04-12 编程语言

git 学习地址

参考链接

报错如下

error: failed to push some refs to 'https://github.com/GDDXZ/RobotDenso.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

解决方法:

1、git add . //添加文件到本地仓库

2、git commit -m "描述信息" //添加文件描述信息

3、git pull origin master // 更新本地版本库

4、git push -u origin master //把本地仓库推送至远程仓库

原文链接:https://blog.csdn.net/qq_42540989/article/details/118720463

栏目分类
最近更新