blob: 119a81b377629172d76aae9febd24ef202b7b0f6 (
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
64
65
66
67
68
69
70
71
|
#! /usr/bin/env bash
# Create remote git repository (on the server). You must run this script from
# the "repositories root" (e.g., /var/scm) where you want the repository to be
# created (including any subdirectories). If the repository is public, also
# add it to the manifest file (used for mirroring).
#
# --private
# make the repository private
#
# Note: <name> can be without the .git suffix.
#
usage="usage: $0 [--private] <name>"
owd="$(pwd)"
trap "{ cd '$owd'; exit 1; }" ERR
set -o errtrace # Trap in functions.
function info () { echo "$*" 1>&2; }
function error () { info "$*"; exit 1; }
public="y"
while [ "$#" -gt 0 ]; do
case "$1" in
--private)
public="n"
shift
;;
-*)
error "unknown option: $1"
;;
*)
break
;;
esac
done
if [ -z "$1" ]; then
error "repository name expected"
fi
r="$1"
if [ "$(basename "$1")" = "$(basename --suffix=.git "$1")" ]; then
r="$r.git"
fi
mkdir -p "$r"
chgrp scm "$r"
git --bare init --shared=all "$r"
info "Enter project description (one line; or edit $r/descrition later)"
info "Hit Ctrl-D when done"
cat >"$r/description"
chgrp -R scm "$r"
if [ "$public" = "y" ]; then
f="$r/git-daemon-export-ok"
touch "$f"
chgrp scm "$f"
chmod g+w "$f"
else
# Disable raw HTTP access to this directory.
#
echo "deny from all" >"$r/.htaccess"
fi
mv "$r/hooks/post-update.sample" "$r/hooks/post-update"
if [ "$public" = "y" ]; then
echo "$r" >>manifest
fi
|