From ad673299a0fbae04b6a4cebfca8a294ebc6dacca Mon Sep 17 00:00:00 2001 From: AnneCYH Date: Thu, 20 Aug 2026 14:02:00 +0800 Subject: [PATCH] docs(how-to): Fix git clone command to use git protocol Signed-off-by: AnneCYH --- docs/how-to/source-code/obtain-kernel-source-git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to/source-code/obtain-kernel-source-git.md b/docs/how-to/source-code/obtain-kernel-source-git.md index e762f9d..ae27294 100644 --- a/docs/how-to/source-code/obtain-kernel-source-git.md +++ b/docs/how-to/source-code/obtain-kernel-source-git.md @@ -45,7 +45,7 @@ by first downloading the upstream kernel tree and using it as a reference for subsequent clones: ```{code-block} shell -git clone https://kernel.ubuntu.com/ubuntu/linux.git +git clone git://kernel.ubuntu.com/ubuntu/linux.git git clone --reference linux https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy git clone --reference linux https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/noble ```