Git 命令教程合集
Published by powerfulyang on Jul 15, 2023
git 修改 remote origin
git 修改 remote origin
可以使用 git remote set-url
命令来修改已经存在的远程仓库链接(例如,origin)。这里有一个例子:
首先,查看当前的远程仓库设置:
1git remote -v
输出可能看起来像这样:
1origin https://github.com/user/repo.git (fetch)
2origin https://github.com/user/repo.git (push)
现在,如果你想修改远程仓库的 URL,可以这样操作:
1git remote set-url origin https://github.com/user/newRepo.git
然后,你可以再次查看远程仓库的设置,确认修改已经生效:
1git remote -v
现在输出应该是这样:
1origin https://github.com/user/newRepo.git (fetch)
2origin https://github.com/user/newRepo.git (push)
以上,你已经成功地修改了 origin
远程仓库的 URL。