aboutsummaryrefslogtreecommitdiffstats
path: root/create-repo
blob: 2883b583f3d174809344814d2176a694ccef92e0 (plain)
1
2
3
4
5
6
#!/bin/sh
if [ -n "$1" ]; then
    echo "Usage: create-repo <reponame>"
    exit 1
fi
sudo -u git git init --bare "$1"