修改Git远程地址 git config remote.origin.url "https://..."

仓库管理:

添加或指定远程仓库地址

git remote set-url origin "https://..."
git config remote.origin.url "https://..."

删除

git remote rm origin
原文地址:https://www.cnblogs.com/coder306/p/13087576.html