我将git repo从https://github.com/username/testrepo.git移到了https://github.com/companyname/testrepo.git,现在需要在gem上做更多的工作。当我进入本地计算机上的目录并键入git remote -v
时,它仍然显示原点https://github.com/username/testrepo.git。
我的问题是,使用新位置更新此遥控器并重新开始工作的正确方法是什么?
答案 0 :(得分:2)
首先删除原始远程:
git remote rm origin
然后将其重命名为:
git remote set-url origin git@github.com:companyname/testrepo.git