linux - 如何使用git切换到特定版本的Linux源代码?

标签 linux git linux-kernel

具体来说,我想切换到内核版本 2.6.32.41 源代码。但是,在

的输出中

git tag -l

它显示以下内容:

v2.6.32-rc2
v2.6.32-rc3
v2.6.32-rc4
v2.6.32-rc5
v2.6.32-rc6
v2.6.32-rc7
v2.6.32-rc8

哪一个是 2.6.32.41 linux 内核源代码?

最佳答案

这些标签都不是 2.6.32.41 源。 2.6.x.* 和 3.x.* 版本在“稳定”存储库中分别开发和维护:

git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git

参见 https://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git用于 gitweb 界面。

关于linux - 如何使用git切换到特定版本的Linux源代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11171457/

相关文章:

c - 如何使用进程 ID 或其相应的 task_struct 获取指向/proc 目录的指针?

linux - USB 设备枚举失败 : "device descriptor read/64, error -32"

linux - 如何在我的系统上找到 Hadoop hdfs 目录?

linux - 在 Windows 环境中使用 shell 脚本的好的 IDE 是什么?

java - 为什么我要将 Java Web 应用程序分成 git 上的两个存储库?

javascript - 如何使用 github 托管外部 CSS 文件?

linux - 使所有线程休眠 linux/unix

java.lang.运行时异常 "Cannot run program"

git - 如何计算每个贡献者对Git或Gerrit中代码的贡献百分比?

c - 为什么操作系统需要/维护内核线程?