git同时管理GitHub与Gitee

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
1. 查看远程仓库地址
git remote -v

2. 重命名远程仓库
git remote rename origin github

3. 添加新的远程仓库
git remote add gitee https://gitee.com/gozhuyinglong/blog-demos.git

4. 多个远程仓库推拉
git push github main
git pull github main
git push gitee main
git pull gitee main

5. 将本地分支与远程分支进行关联
git push --set-upstream gitee main

6. 直接推送不指定分支
git push github
git pull github
git push gitee
git pull gitee

7. 移除远程仓库
git remote remove gitee

💌lixiang117423@foxmail.com
💌lixiang117423@gmail.com


git同时管理GitHub与Gitee
https://lixiang117423.github.io/article/githubee/
作者
小蓝哥
发布于
2021年12月11日
许可协议