我的项目在GitHub的某个位置git@github.com:myname/oldrep.git
。
现在,我想将所有代码推送到其他位置的新存储库git@github.com:newname/newrep.git
。
我使用了命令:
git remote add origin git@github.com:myname/oldrep.git
但我收到这个:
致命:远程来源已经存在。
git remote add origin2 ....
,则可以简单地使用其他名称,但是如果只需要推送一次而无需修改存储库配置,则可以简单地使用git push git@github.com:user/another-project.git master:master
。