How to upgrade to a specific version of Linux source code using git?

In particular, I want to switch to the source code of the kernel version 2.6.32.41. However, the output

git tag -l

shows the following:

v2.6.32-code2
v2.6.32-rc3
v2.6.32-rc4
v2.6.32-rc5
v2.6.32-rc6
v2.6.32-RC7
v2.6.32-rc8

Which one is the source of the Linux kernel 2.6.32.41?

+8
git linux linux-kernel
source share
1 answer

None of these tags are the source of 2.6.32.41. Version 2.6.x. * and 3.x. * Developed and maintained separately in the "stable" storage:

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

See https://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git for the gitweb interface.

+4
source share

All Articles