我已经转移了我的存储库,我仍然可以推送,当我这样做时,我是如何收到以下错误的:
致命:存储库' https://me@bitbucket.org/me/optinisations.git/'找不到
答案 0 :(得分:2)
您需要先删除旧的来源:
git remote remove origin
然后添加新原点:
git remote add origin https://new_server.com/path/to/repo.git
现在你应该能够再次推动。