$git remote add both git@git.coding.net:user/repo.git # 添加一个名为 both 的远端 $git remote set-url --add --push both git@git.coding.net:user/repo.git # 为其添加 push 到 Coding 的 SSH 地址 $git remote set-url --add --push both git@github.com:user/repo.git # 为其添加 push 到 GitHub 的 SSH 地址
查看当前远端仓库:
1 2 3 4 5 6
$git remote -v #查看当前远端仓库 both git@git.coding.net:user/repo.git (fetch) both git@git.coding.net:user/repo.git (push) both git@github.com:user/repo.git (push) origine git@git.coding.net:user/repo.git (fetch) origine git@git.coding.net:user/repo.git (push)