如何重新配置git地址
时间: 2023-07-26 12:36:00 浏览: 52
你可以使用以下命令来重新配置 git 地址:
1. 查看当前的 git 远程仓库地址:
```
git remote -v
```
2. 移除当前的 git 远程仓库地址:
```
git remote remove origin
```
3. 添加新的 git 远程仓库地址:
```
git remote add origin <新的远程仓库地址>
```
4. 确认新的 git 远程仓库地址已经添加成功:
```
git remote -v
```
注意:在执行以上命令之前,请确保你已经具备新的 git 远程仓库地址。
阅读全文