blob: b4d2d5f655e10b4a924fa9c3c9546c2e21dacef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
# * create-bare-repo
# Allows users to create repo.git
# ssh git@host create-bare-repo repo1 repo2 ...
set -e
for repo in "$@"; do
repo="$(sed -r 's,^/*,,' <<<"$repo")"
_repo="$(sed -r -e '/(^|\/)\.\.($|\/)/d' -e "s,[^A-Za-z0-9\./_~-],,g" <<<"$repo")"
test "$repo" != "$_repo" && { printf 'Illegal name: %s\n' "${repo}"; continue; }
test -d "$repo".git && { printf 'Already exists: %s\n' "${repo}"; continue; }
mkdir -p -- "$repo".git
pushd "$repo".git >/dev/null
git init --bare
popd >/dev/null
done
|