📅  最后修改于: 2023-12-03 15:30:56.054000             🧑  作者: Mango
git remote set-url origin
命令介绍git remote set-url origin
是 Git 中用来将一个远程仓库链接更改为指定 URL 的命令。
git remote set-url <remote> <url>
<remote>
:要更改链接的远程仓库名称。<url>
:指定要更改为的 URL。更改远程仓库 origin
的链接为 https://github.com/Shell-Bash/test.git
:
git remote set-url origin https://github.com/Shell-Bash/test.git
git remote set-url
命令?可以使用 git remote -v
命令查看当前所有远程仓库的 URL:
$ git remote -v
origin https://github.com/Shell-Bash/test.git (fetch)
origin https://github.com/Shell-Bash/test.git (push)
可以使用 git remote set-url
命令来更改已经 clone 下来的仓库的远程链接。
可以为一个远程仓库设置多个 URL,只需要使用 git remote set-url --add
命令添加即可。
$ git remote set-url --add origin https://github.com/user/repo.git