今天在上传项目demo时报错了,报错信息如下:
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://gitee.com/xxxx/xxx.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.
后来通过检查发现,昨天在gitee上添加了LICENSE,但在本地仓库没有同步,导致新版本无法上传。此时应该在本地库同步远程库,然后再提交上传即可成功,同步指令如下。
git pull origin master --allow-unrelated-histories