git 修改仓库地址

方法一:使用命令先删再增 第一步:先删除你的远程仓库

git remote rm origin

第二步:再添加远程仓库
git remote add origin [url]

注意:如果有其他分支修改后需要重新拉去一下远程分支
git fetch

方法二:使用命令修改
git remote origin set-url [url]

方法三:直接修改你本地的.git文件 【git 修改仓库地址】git 修改仓库地址
文章图片

进入.git文件夹,编辑.git文件中的config文件,修改config文件中的url路径为新的远程仓库地址路径。
git 修改仓库地址
文章图片

    推荐阅读