git » autoupdaters.git » main » tree

[main] / linux-kbb / get-linux.sh

#!/bin/bash
set -x
set -e
SINCE=2022-12-01
git clone --bare --shallow-since=2021-01-01 github:urjaman/linux-for-my-autobuilder.git linux
cd linux
git remote rename origin publish
echo "	fetch = +refs/heads/*:refs/remotes/publish/*" >> config
git config pack.packSizeLimit 512m
git fetch -v --shallow-since=$SINCE
git remote add mainline https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
# Note: add stable trees as needed (or runtime with set-branches --add)
git remote add -t linux-6.1.y -t linux-6.6.y -t linux-6.10.y stable https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
git fetch -v --shallow-since=$SINCE --shallow-exclude=v6.0 mainline
git fetch -v --shallow-since=$SINCE --shallow-exclude=v6.0.1 stable
git gc