idea变更远程仓库地址
时间: 2023-12-03 19:04:39 浏览: 84
Git如何修改远程仓库地址
5星 · 资源好评率100%
可以通过以下命令来变更远程仓库地址:
```
git remote set-url origin <new-url>
```
其中,`<new-url>` 是你要变更成的新的远程仓库地址。
如果你想要查看当前的远程仓库地址,可以使用以下命令:
```
git remote -v
```
这个命令会列出当前所有的远程仓库地址。
阅读全文