1.查看远程仓库
git remote -v
2 远程仓库重命名
git remote rename
git remote rename origin github
3 添加另一个远程仓库
git remote add
git remote add gitee https://gitee.com/xxx/blog-demos.git
4 多个远程仓库的推送/拉取
有了多个远程仓库,推送和拉取再也不能像以前那样git push和git pull了,必须得加上远程仓库的名称,以识别操作的是哪个远程仓库。命令如下:
git push
git push github main
git pull github main
git push gitee main
git pull gitee main
5 移除一个远程仓库
git remote remove
git remote remove gitee