返回介绍

Linux Kernel Git 镜像使用帮助

发布于 2021-03-20 05:23:11 字数 801 浏览 1012 评论 0 收藏 0

本项目包含三个镜像:linux.git, linux-stable.git, linux-next.git,分别是主分支、稳定版分支和开发分支。在使用时,请自行更改路径中相应的仓库名称。

如需克隆主线 linux 代码,使用

git clone https://mirrors.tuna.tsinghua.edu.cn/git/linux.git

若要将 tuna mirror 加入已有代码库,可在已有仓库中运行

git remote add tuna https://mirrors.tuna.tsinghua.edu.cn/git/linux.git

或运行

git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/linux.git

将默认上游设置为 TUNA 镜像

增量下载

如果需要其它 linux 分支的代码(如树莓派内核代码),可以在 clone 本项目基础上增量下载分支的代码,从而加速下载

以树莓派为例,具体操作为

git clone https://mirrors.tuna.tsinghua.edu.cn/git/linux.git
git remote add rasp https://github.com/raspberrypi/linux.git
git fetch rasp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文