1.查看远程仓库

  1. git remote -v

2 远程仓库重命名

git remote rename

  1. git remote rename origin github

3 添加另一个远程仓库

git remote add

  1. git remote add gitee https://gitee.com/xxx/blog-demos.git

4 多个远程仓库的推送/拉取

有了多个远程仓库,推送和拉取再也不能像以前那样git push和git pull了,必须得加上远程仓库的名称,以识别操作的是哪个远程仓库。命令如下:
git push 、git pull

  1. git push github main
  2. git pull github main
  3. git push gitee main
  4. git pull gitee main

5 移除一个远程仓库

git remote remove 或git remote rm

  1. git remote remove gitee