天天看點

Git push 報錯error: failed to push some refs to '[email protected]'

錯誤原因

遠端庫與本地庫不一緻造成的,那麼我們把遠端庫同步到本地庫就可以了。

解決方法

1.重新pull

git pull --rebase origin master

2.重新push

git push origin master