1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-11 07:48:07 +01:00

13 lines
156 B
Plaintext
Raw Normal View History

#!/bin/sh
repo=$1
if [ $repo != *.git ]; then
repo="${repo}.git"
fi
echo "Creating $repo"
(
cd "$HOME"
git init --bare "$repo"
chown -R git:git "$repo"
)