git 修改remote.origin.url
时间: 2024-05-17 10:18:03 浏览: 158
remote-origin-url:从本地git存储库中提取git远程源URL
如果需要修改 Git 仓库的远程仓库地址,可以使用以下命令:
```
git remote set-url origin <新的远程仓库地址>
```
其中,`origin` 是远程仓库的名称,`<新的远程仓库地址>` 是你要修改成的新地址。
例如,如果你要将远程仓库地址从 `https://github.com/olduser/oldrepo.git` 修改为 `https://github.com/newuser/newrepo.git`,可以执行以下命令:
```
git remote set-url origin https://github.com/newuser/newrepo.git
```
这样就将 Git 仓库的远程仓库地址修改为了新地址。如果需要验证是否已经修改成功,可以使用 `git remote -v` 命令查看当前仓库的远程仓库地址。
阅读全文