error: failed to push some refs to 'git@github.com:jack-don/elema_vue.git' hint: Updates were reject

来源:互联网 发布:js中时间格式化字符串 编辑:程序博客网 时间:2024/06/06 08:38

错误来源于git版本管理
error: failed to push some refs to ‘git@github.com:jack-don/elema_vue.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.

原型是因为在你的项目的目录下(也就是有.git的目录下)没有README.md文件
需要用下面的代码来合并下(或者直接拷贝过来)
git pull –rebase origin master
然后在运行git push -u origin master
就不会报错了

阅读全文
0 0