测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
git远端仓库地址管理命令的使用方法
收藏本文
作者:redrose2100 类别: 日期:2022-05-08 02:35:37 阅读:897 次 消耗积分:0 分
![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/8ce56c94-9412-11ee-b2af-0242ac110004.png) [TOC] # 一、应用场景: 将主仓代码同步到个人的代码仓,以开源github上pytest代码为例,比如开源git地址为 git@github.com:pytest-dev/pytest.git,fork到个人仓git地址为:git@github.com:redrose2100/pytest.git (1)在本地初始化一个pytest的代码仓,因为还没有和远端代码仓关联,因此这里看不到什么关联关系,git remote -v 即为查看本地仓库和远端仓库的关联关系的 ```shell hitre@iscas-redrose2100 MINGW64 /d/src/pytest $ git init Initialized empty Git repository in D:/src/pytest/.git/ hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote -v hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ ``` (2)将本地仓库和远端个人仓和公共代码仓关联,个人仓远端地址名为origin,公共代码仓地址名为upstream,这是通用的名称,当存在更多远端代码仓时,还可以自己定义远端代码仓比如gitee ```shell hitre@iscas-redrose2100 MINGW64 /d/src/pytest $ git init Initialized empty Git repository in D:/src/pytest/.git/ hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote -v hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote add origin git@github.com:redrose2100/pytest.git hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote -v origin git@github.com:redrose2100/pytest.git (fetch) origin git@github.com:redrose2100/pytest.git (push) hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote add upstream git@github.com:pytest-dev/pytest.git hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote -v origin git@github.com:redrose2100/pytest.git (fetch) origin git@github.com:redrose2100/pytest.git (push) upstream git@github.com:pytest-dev/pytest.git (fetch) upstream git@github.com:pytest-dev/pytest.git (push) hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote add gitee git@gitee.com:redrose2100/pytest.git hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ git remote -v gitee git@gitee.com:redrose2100/pytest.git (fetch) gitee git@gitee.com:redrose2100/pytest.git (push) origin git@github.com:redrose2100/pytest.git (fetch) origin git@github.com:redrose2100/pytest.git (push) upstream git@github.com:pytest-dev/pytest.git (fetch) upstream git@github.com:pytest-dev/pytest.git (push) hitre@iscas-redrose2100 MINGW64 /d/src/pytest (master) $ ``` (3) 代码同步:首先本地切换到通远端同一个名称的分支名,然后从origin分支拉取代码,这里我们指导upstream是官方的代码,因此,需要从uptream拉取官方代码,然后合入到本地分支,再从本地分支推送到origin个人远端仓和gitee码云平台的远端仓,这样就做到了github个人代码仓和gitee代码仓通github上官方代码仓代码同步了 ```shell git checkout -b main git pull origin main git fetch upstream git merge upstream/maiin git push origin main git push gitee main ``` (4)修改和删除远端分支 ```bash git remote set-url origin xxxxx # 将origin远端的url修改为xxxxx git remote rm origin # 删除origin远端的url ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/114
上一篇:
git merge 和 git rebase 命令的区别
下一篇:
Git命令行使用系列篇
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件