blob: 3a85514ebb8860c3588914590d26d997d5a2a286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/bin/bash
set -e
if test "${#}" -lt 1 || test "${#}" -gt 2; then
printf "%s\n" "usage: $(basename $0) <reponame> [section]"
exit 1
fi
REPO_NAME="${1}"
if ! [[ "${REPO_NAME}" =~ ^[a-zA-Z0-9_-]+$ ]]; then
printf "%s\n" "[err] repository name can only contain letters, numbers, underscores, and hyphens"
exit 1
fi
REPO_SECTION="${2:-uncategorized}"
if ! [[ "${REPO_SECTION}" =~ ^[a-zA-Z0-9_-]+$ ]]; then
printf "%s\n" "[err] section can only contain letters, numbers, underscores, and hyphens"
exit 1
fi
REPO_DIR="/srv/git/repos/${REPO_NAME}.git"
if test -d "${REPO_DIR}"; then
printf "%s\n" "[err] repository ${REPO_NAME}.git already exists at ${REPO_DIR}"
exit 1
fi
mkdir -p "${REPO_DIR}" &>/dev/null
(
cd "${REPO_DIR}"
if git init --bare &>/dev/null; then
printf "%s\n" "[inf] created bare repository at ${REPO_DIR}"
else
printf "%s\n" "[err] failed to create bare repository at ${REPO_DIR}"
fi
git config core.logallrefupdates true
EMPTY_TREE=$(git hash-object -t tree /dev/null)
COMMIT=$(printf "%s\n" "initial commit" | git commit-tree "${EMPTY_TREE}")
git update-ref refs/heads/main "${COMMIT}"
git symbolic-ref HEAD refs/heads/main
git update-server-info
git config cgit.section "${REPO_SECTION}"
cat > hooks/post-receive << "EOL"
#!/bin/sh
agefile="$(git rev-parse --git-dir)"/info/web/last-modified
mkdir -p "$(dirname "$agefile")" &&
git for-each-ref \
--sort=-authordate --count=1 \
--format='%(authordate:iso8601)' \
>"$agefile"
EOL
chmod +x hooks/post-receive
)
chown -R git:git "${REPO_DIR}"
chmod -R g-w "${REPO_DIR}"
printf "%s\n" "[inf] clone with git clone https://cgit.heqnx.com/${REPO_NAME}"
|