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"]

posted @ 2021-02-28 17:44  张什么锋  阅读(1678)  评论(0编辑  收藏  举报