我想使用Git(從控制檯)把我的項目的一個新版本在我的倉庫,但我得到這個錯誤信息:爲什麼我在GIT上推送我的代碼時出現這個錯誤?也許這是一個好主意創建一個分支?
$ git push origin master
To https://bitbucket.org/MyUserName/glis-toolkit.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://[email protected]/MyUserName/glis-toolkit.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.
這意味着什麼?什麼意思是「未能推倒一些裁判」?這些「參考」是什麼?
另一個需要考慮的事情是BitBucket存儲庫上的版本是我係統的一個工作版本(現在與本地版本有很大不同)。我想維護它。也許爲這個新版本創建類似分支的東西更好嗎?
如果它可能是一個解決方案,我該如何創建一個分支並在這個分支上推新版本?
服務器上有你沒有本地的提交,如果你要成功推送,服務器上會有兩個針對你的分支的提示,這是不允許的。您需要了解這意味着什麼,以便您可以適當地處理它。很有可能你可以通過'git pull origin master'來將遠程更改與本地更改集成並進行合併。 –
@ LasseV.Karlsen好的,只有一個疑問:在進行拉...我可以檢查(使用控制檯中的GIT)檢查我的本地版本和我的遠程版本之間有什麼區別? – AndreaNobili
你可以'git fetch'然後'git log master origin/master',這應該告訴你你將用'git pull'合併。 –