今天本地创建的项目在上传git的时候出现报错
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'http://gitlab.**.**/*/xxl-job.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.先拉取远程的项目,然后在重新提交可以解决这个问题。
2.直接强制覆盖掉远程的项目,直接使用本地的项目,因为我这里是新建的项目,所以我用的这种方案。