我将一个 git repo 从https://github.com/username/testrepo.git移到了https://github.com/companyname/testrepo.git,现在需要在 gem 上做更多的工作。当我进入本地计算机上的目录并键入git remote -v
时,它仍然显示 origin https://github.com/username/testrepo.git。
我的问题是,我用新位置更新这个遥控器并重新开始工作的正确方法是什么?
我将一个 git repo 从https://github.com/username/testrepo.git移到了https://github.com/companyname/testrepo.git,现在需要在 gem 上做更多的工作。当我进入本地计算机上的目录并键入git remote -v
时,它仍然显示 origin https://github.com/username/testrepo.git。
我的问题是,我用新位置更新这个遥控器并重新开始工作的正确方法是什么?
首先删除原始遥控器:
git remote rm origin
然后像这样重命名它:
git remote set-url origin git@github.com:companyname/testrepo.git
资料来源:如何重命名 github 上的存储库?