1、當(dāng)你遠程鏈接碼云或者github社區(qū)時
git remote add origin git@github.com:WadeLeng/hello-world.git
錯誤提示:fatal: remote origin already exists.
解決辦法:
git remote rm origin
然后在執(zhí)行:
git remote add origin git@github.com:WadeLeng/hello-world.git
就不會報錯誤了
2、當(dāng)你提交上傳代碼到倉庫中時
git push origin master
錯誤提示:error:failed to push som refs to
解決辦法:
git pull origin master
先把遠程服務(wù)器github上面的文件拉先來,再push 上去。
更多建議: