Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to switch to a particular version of Linux source code using git?

Specifically, I want to switch to the kernel version 2.6.32.41 source code. However, in the output of

git tag -l

it shows the following:

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

Which one of these is 2.6.32.41 linux kernel source?

like image 584
gjain Avatar asked Jun 23 '12 17:06

gjain


1 Answers

None of those tags are the 2.6.32.41 source. The 2.6.x.* and 3.x.* versions are developed and maintained separately in the "stable" repository:

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.

like image 167
Richard Hansen Avatar answered Nov 03 '22 01:11

Richard Hansen