error: failed to push some refs to '[email protected]:jack-don/elema_vue.git' hint: Updates were reject

错误来源于git版本管理
error: failed to push some refs to ‘[email protected]: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
就不会报错了

你可能感兴趣的:(工具类)