git 添加和删除 global 的 remote.origin.url


1 单独的仓库

添加

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

删除

git remote rm origin

添加

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

删除

 vim  ~/.gitconfig
 # 删除 origin  的 参数
 [remote "origin"]