mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 12:39:10 +01:00
15 lines
185 B
Bash
Executable File
15 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
repo=$1
|
|
if [[ "$repo" != *.git ]]; then
|
|
repo="${repo}.git"
|
|
fi
|
|
echo "Creating $repo"
|
|
(
|
|
cd "$HOME"
|
|
git init --bare "$repo"
|
|
chown -R git:git "$repo"
|
|
)
|