今天在gitee創建了一個項目,打算把本地代碼推送上去,發現報錯了,報錯如下:
error: failed to push some refs to 'https://gitee.com/xxxx' 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.
分析原因:
是因為README.md文件不在本地代碼目錄中
解決方法:
執行以下命令,把README.md拉到本地
git pull --rebase origin master
然后執行以下命令,推送文件
git push origin master