Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at ffd294d346d185b70e28b1a28abe367bbfe53c04 14 lines 298 B view raw
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0-only 3# 4# succeed if we are in a git repository 5 6srctree="$(dirname $0)/.." 7 8if ! git -C "${srctree}" rev-parse --verify HEAD >/dev/null 2>/dev/null; then 9 exit 1 10fi 11 12if ! test -z $(git -C "${srctree}" rev-parse --show-cdup 2>/dev/null); then 13 exit 1 14fi