管理跟踪的远程仓库(remotes)。 更多信息:https://git-scm.com/docs/git-remote.
git remote {{-v|--verbose}}
git remote show {{远程仓库名字}}
git remote add {{远程仓库名字}} {{远程仓库 URL}}
--add
选项不会移除现有的 URL):git remote set-url {{远程仓库名字}} {{新 URL}}
git remote get-url {{远程仓库名字}}
git remote remove {{远程仓库名字}}
git remote rename {{旧名字}} {{新名字}}