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